/* =========================================================================
   networkpva.com — Light commerce design system (v2, colorful + animated)
   ========================================================================= */

:root {
    /* Surfaces */
    --white:        #ffffff;
    --surface-0:    #ffffff;
    --surface-1:    #fafafa;
    --surface-2:    #f4f4f5;
    --surface-3:    #e9e9eb;

    /* Ink */
    --ink-900:      #0a0a0a;
    --ink-800:      #171717;
    --ink-700:      #262626;
    --ink-600:      #404040;
    --ink-500:      #525252;
    --ink-400:      #737373;
    --ink-300:      #a3a3a3;
    --ink-200:      #e5e5e5;
    --ink-100:      #f5f5f5;

    /* Brand accent */
    --accent:       #10B981;
    --accent-600:   #059669;
    --accent-700:   #047857;
    --accent-50:    #ecfdf5;

    /* Signals + vibes */
    --green:        #10B981;
    --green-50:     #ecfdf5;
    --blue:         #3B82F6;
    --blue-50:      #eff6ff;
    --indigo:       #6366F1;
    --indigo-50:    #eef2ff;
    --amber:        #F59E0B;
    --amber-50:     #fffbeb;
    --rose:         #F43F5E;
    --rose-50:      #fff1f2;
    --pink:         #EC4899;
    --pink-50:      #fdf2f8;
    --red:          #EF4444;
    --red-50:       #fef2f2;
    --slate:        #475569;
    --slate-50:     #f8fafc;
    --violet:       #8B5CF6;
    --violet-50:    #f5f3ff;

    /* Gradient-mesh stops */
    --mesh-mint:    #6EE7B7;
    --mesh-coral:   #FCA5A5;
    --mesh-lilac:   #C4B5FD;
    --mesh-sky:     #93C5FD;
    --mesh-peach:   #FED7AA;

    --f-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --f-serif: "Instrument Serif", Georgia, serif;

    --container: 1280px;
    --pad-x:     clamp(20px, 4vw, 40px);
    --section-y: clamp(40px, 4.5vw, 64px);
    --radius:    10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --ease: cubic-bezier(.2,.7,.2,1);
    --ease-back: cubic-bezier(.34,1.56,.64,1);
    --dur:  .18s;
    --dur-slow: .35s;
}

/* =========================================================================
   RESET + BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-900);
    background: var(--surface-0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: transparent; border: 0; font: inherit; color: inherit; cursor: pointer; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
input, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; top: -40px; left: 16px;
    background: var(--ink-900); color: #fff;
    padding: 10px 18px; font-weight: 600; font-size: 13px;
    border-radius: var(--radius-sm);
    z-index: 1000; transition: top .15s var(--ease);
}
.skip-link:focus { top: 12px; }

.np-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}

/* =========================================================================
   HEADER
   ========================================================================= */
.np-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.np-header[data-state="scrolled"] {
    border-bottom-color: var(--ink-200);
    background: rgba(255, 255, 255, 0.92);
}

.np-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px var(--pad-x);
    display: flex;
    align-items: center;
    gap: 20px;
}

.np-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.025em;
    color: var(--ink-900);
    flex-shrink: 0;
}
.np-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--dur-slow) var(--ease-back);
}
.np-brand:hover .np-brand__mark { transform: rotate(90deg); }
.np-brand__word em {
    font-style: normal;
    background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.np-nav {
    display: none;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 8px;
}
@media (min-width: 1040px) { .np-nav { display: inline-flex; } }
.np-nav__link {
    --accent-col: var(--accent);
    position: relative;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-700);
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.np-nav__link > span { position: relative; z-index: 1; }
.np-nav__link::before {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-col);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.np-nav__link[data-accent="#10B981"] { --accent-col: #10B981; }
.np-nav__link[data-accent="#3B82F6"] { --accent-col: #3B82F6; }
.np-nav__link[data-accent="#F59E0B"] { --accent-col: #F59E0B; }
.np-nav__link[data-accent="#EC4899"] { --accent-col: #EC4899; }
.np-nav__link:hover { color: var(--ink-900); }
.np-nav__link:hover::before { transform: scaleX(1); }

/* Search input + dropdown */
.np-header__search {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 0 12px 0 14px;
    background: var(--surface-2);
    border: 1px solid transparent;
    border-radius: var(--radius);
    height: 40px;
    flex: 1 1 220px;
    max-width: 320px;
    margin-left: auto;
    position: relative;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.np-header__search:focus-within {
    background: #fff;
    border-color: var(--ink-900);
    box-shadow: 0 0 0 4px rgba(10,10,10,.05);
}
.np-header__search-icon { color: var(--ink-400); flex-shrink: 0; }
.np-header__search input {
    flex: 1;
    border: 0; background: transparent; outline: 0;
    font-size: 13.5px;
    color: var(--ink-900);
    min-width: 0;
}
.np-header__search input::placeholder { color: var(--ink-400); }
.np-kbd {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-500);
    background: #fff;
    border: 1px solid var(--ink-200);
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}
@media (min-width: 1180px) { .np-header__search { display: flex; } }

.np-search__pop {
    position: absolute;
    top: calc(100% + 8px);
    left: -1px;
    right: -1px;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(10,10,10,.04), 0 24px 56px -20px rgba(10,10,10,.28);
    padding: 6px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 120;
}
.np-search__pop[hidden] { display: none; }
.np-search__opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--ink-800);
    cursor: pointer;
    text-align: left;
    width: 100%;
    background: transparent;
    border: 0;
    transition: background var(--dur) var(--ease);
}
.np-search__opt:hover,
.np-search__opt.is-active {
    background: var(--surface-2);
}
.np-search__opt-ico {
    --c: var(--ink-900);
    width: 26px; height: 26px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--c) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--c) 15%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.np-search__opt-ico img {
    width: 15px; height: 15px;
    filter: brightness(0) saturate(100%) invert(6%);
}
.np-search__opt-name {
    font-weight: 600;
    color: var(--ink-900);
    font-size: 13.5px;
}
.np-search__opt-cat {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-500);
    padding: 2px 6px;
    border: 1px solid var(--ink-200);
    border-radius: 4px;
    margin-left: auto;
}
.np-search__empty {
    padding: 14px 12px;
    font-size: 13px;
    color: var(--ink-500);
    text-align: center;
}
.np-search__empty strong { color: var(--ink-900); font-weight: 600; }

/* Platform tile highlight when targeted from search */
.np-platform.is-flash {
    box-shadow: 0 0 0 2px var(--accent), 0 18px 36px -18px rgba(16,185,129,.4);
    transform: translateY(-3px);
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.np-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}
.np-header__search ~ .np-header__actions { margin-left: 0; }

.np-burger {
    display: inline-flex;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 4px;
    width: 42px; height: 42px;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color var(--dur) var(--ease);
}
.np-burger:hover { border-color: var(--ink-900); }
.np-burger span { display: block; width: 16px; height: 1.6px; background: var(--ink-900); transition: transform var(--dur) var(--ease); }
@media (min-width: 1040px) { .np-burger { display: none; } }

/* Mobile overlay */
.np-mobile {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    overflow-y: auto;
}
.np-mobile.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.np-mobile__inner { padding: 72px var(--pad-x) 40px; min-height: 100vh; display: flex; flex-direction: column; }
.np-mobile__close {
    position: absolute;
    top: 18px; right: var(--pad-x);
    width: 44px; height: 44px;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-900);
    background: #fff;
}
.np-mobile__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--ink-200); }
.np-mobile__nav a {
    --accent-col: var(--ink-900);
    font-size: 30px; font-weight: 800; letter-spacing: -0.025em;
    color: var(--ink-900);
    padding: 10px 0;
    position: relative;
    transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.np-mobile__nav a[data-accent="#10B981"] { --accent-col: #10B981; }
.np-mobile__nav a[data-accent="#3B82F6"] { --accent-col: #3B82F6; }
.np-mobile__nav a[data-accent="#F59E0B"] { --accent-col: #F59E0B; }
.np-mobile__nav a[data-accent="#EC4899"] { --accent-col: #EC4899; }
.np-mobile__nav a:hover { color: var(--accent-col); padding-left: 8px; }
.np-mobile__live {
    display: flex; align-items: center; gap: 10px;
    margin-top: 20px; padding: 14px 16px;
    background: var(--green-50);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--accent-700);
}
.np-mobile__live strong { font-weight: 800; }
.np-mobile .np-cta { margin-top: auto; justify-content: center; }
body.menu-open { overflow: hidden; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.np-cta {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    white-space: nowrap;
    line-height: 1;
}
.np-cta svg { transition: transform var(--dur) var(--ease); }
.np-cta:hover svg { transform: translateX(3px); }

.np-cta--primary {
    background: var(--ink-900);
    color: #fff;
    border-color: var(--ink-900);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.np-cta--primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -12px rgba(16,185,129,.55);
}
.np-cta--primary:active { transform: translateY(0); }

.np-cta--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.np-cta--accent:hover { background: var(--accent-600); transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(16,185,129,.5); }

.np-cta--ghost { background: #fff; color: var(--ink-900); border-color: var(--ink-200); }
.np-cta--ghost:hover { border-color: var(--ink-900); transform: translateY(-1px); }

.np-cta--sm { padding: 10px 16px; font-size: 13px; }
.np-cta--full { width: 100%; justify-content: center; padding: 14px 20px; }

.np-link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--ink-900);
    padding: 8px 0;
    transition: color var(--dur) var(--ease);
}
.np-link-arrow svg { transition: transform var(--dur) var(--ease); }
.np-link-arrow:hover { color: var(--accent-600); }
.np-link-arrow:hover svg { transform: translateX(3px); }

/* =========================================================================
   HERO — structured inventory terminal (PVA editorial)
   ========================================================================= */
:root {
    --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --hero-ink: #0a0a0a;
    --hero-rule: #e9e9eb;
    --hero-accent: #10B981;
    --hero-accent-50: #ecfdf5;
    --terminal-border: #e5e7eb;
    --terminal-bg: #ffffff;
    --terminal-row-alt: #fafafa;
    --terminal-head: #0a0a0a;
    --terminal-muted: #6b7280;
}

.np-hero {
    position: relative;
    padding: clamp(36px, 4.5vw, 56px) 0 clamp(40px, 5vw, 64px);
    overflow: hidden;
    isolation: isolate;
    background: #fff;
}

/* Architect-paper background: fine dot grid + faint vertical rules + single low-opacity emerald glow */
.np-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-color: #fff;
    background-image:
        radial-gradient(1px 1px at 1px 1px, rgba(10,10,10,.08) 1px, transparent 0),
        linear-gradient(90deg, rgba(10,10,10,.035) 1px, transparent 1px);
    background-size: 24px 24px, 120px 100%;
    background-position: 0 0, 0 0;
}
.np-hero__bg::before {
    /* Single restrained emerald glow bottom-right — signals "live" without pastel cloud */
    content: "";
    position: absolute;
    right: -12%;
    bottom: -20%;
    width: 55%;
    height: 90%;
    background: radial-gradient(closest-side, rgba(16,185,129,.18), transparent 75%);
    filter: blur(30px);
    pointer-events: none;
}
.np-hero__bg::after {
    /* Soft top/bottom edge fade so the grid doesn't clash with ticker above and platforms below */
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 88%, rgba(255,255,255,1) 100%);
}
/* Legacy no-ops */
.np-hero__blob, .np-hero__grain, .np-hero__right, .np-hero__visual,
.np-hero__pill, .np-hero__shell, .np-hero__search, .np-hero__chips { display: none; }

/* ═════════ GRID (split left / right) ═════════ */
.np-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 960px) {
    .np-hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: 56px; }
}

/* ═════════ LEFT · copy column ═════════ */
.np-hero__copy { max-width: 560px; }

.np-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px 5px 9px;
    background: #fff;
    border: 1px solid var(--terminal-border);
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 1px 2px rgba(10,10,10,.04);
}
.np-hero__eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--hero-accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,.22);
    animation: pulseDot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
.np-hero__eyebrow-mono {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--hero-ink);
}
@keyframes pulseDot {
    0%,100% { transform: scale(1); opacity: 1; }
    50%     { transform: scale(.78); opacity: .75; }
}

.np-hero__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--hero-ink);
}
.np-hero__title-accent {
    display: inline;
    color: var(--hero-ink);
    background-image: linear-gradient(180deg, transparent 68%, rgba(16,185,129,.28) 68%, rgba(16,185,129,.28) 96%, transparent 96%);
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    padding: 0 .04em;
}

.np-hero__rule {
    height: 1px;
    width: 64px;
    background: var(--hero-ink);
    margin: 26px 0 22px;
}

.np-hero__sub {
    margin: 0;
    font-size: clamp(15px, 1.25vw, 17px);
    color: #404040;
    line-height: 1.6;
    max-width: 520px;
}
.np-hero__sub strong {
    color: var(--hero-ink);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.np-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}
.np-cta--lg {
    padding: 14px 22px;
    font-size: 14.5px;
    border-radius: 8px;
}
.np-hero__ctas .np-cta--primary {
    box-shadow: 0 10px 24px -12px rgba(10,10,10,.35);
}
.np-hero__ctas .np-cta--primary:hover {
    box-shadow: 0 14px 30px -12px rgba(16,185,129,.5);
}

/* Editorial specs dl */
.np-hero__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 36px 0 0;
    border-top: 1px solid var(--hero-rule);
}
@media (min-width: 520px) {
    .np-hero__specs { grid-template-columns: repeat(4, auto); column-gap: 32px; }
}
.np-hero__specs > div {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.np-hero__specs dt {
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terminal-muted);
}
.np-hero__specs dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--hero-ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.np-hero__star { color: #F59E0B; }

/* ═════════ RIGHT · inventory terminal ═════════ */
.np-terminal {
    background: var(--terminal-bg);
    border: 1px solid var(--terminal-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(10,10,10,.04),
        0 30px 60px -30px rgba(10,10,10,.18),
        0 10px 24px -12px rgba(10,10,10,.08);
    font-feature-settings: "tnum", "ss01";
    font-variant-numeric: tabular-nums;
    isolation: isolate;
    position: relative;
}
.np-terminal::before {
    /* Subtle emerald rim glow */
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(16,185,129,.25), transparent 35%, transparent 65%, rgba(16,185,129,.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Head — like a terminal window chrome */
.np-terminal__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #0a0a0a;
    color: #e5e7eb;
    border-bottom: 1px solid #000;
}
.np-terminal__dots {
    display: inline-flex;
    gap: 6px;
    flex-shrink: 0;
}
.np-terminal__dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #3f3f46;
}
.np-terminal__dots span:nth-child(1) { background: #f97066; }
.np-terminal__dots span:nth-child(2) { background: #fdb022; }
.np-terminal__dots span:nth-child(3) { background: #32d583; }
.np-terminal__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 500;
    color: #e5e7eb;
    flex: 1;
    justify-content: center;
    letter-spacing: 0.02em;
}
.np-terminal__live {
    width: 7px; height: 7px; border-radius: 50%;
    background: #32d583;
    box-shadow: 0 0 0 3px rgba(50,213,131,.18);
    animation: pulseDot 1.8s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}
.np-terminal__clock {
    font-family: var(--f-mono);
    font-size: 11px;
    color: #71717a;
    flex-shrink: 0;
    letter-spacing: .02em;
}

/* Bar — aggregate metrics */
.np-terminal__bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 16px;
    background: #fafafa;
    border-bottom: 1px solid var(--terminal-border);
}
.np-terminal__bar > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid var(--terminal-border);
    padding: 0 12px;
}
.np-terminal__bar > div:first-child { padding-left: 0; }
.np-terminal__bar > div:last-child  { padding-right: 0; border-right: 0; }
.np-terminal__bar-label {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terminal-muted);
}
.np-terminal__bar-val {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--hero-ink);
    font-variant-numeric: tabular-nums;
}

/* Table */
.np-terminal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.np-terminal__table thead th {
    text-align: left;
    padding: 10px 16px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terminal-muted);
    background: #fafafa;
    border-bottom: 1px solid var(--terminal-border);
}
.np-terminal__table td {
    padding: 11px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--hero-ink);
    vertical-align: middle;
}
.np-terminal__table tbody tr:last-child td { border-bottom: 0; }
.np-terminal__table tbody tr:hover td { background: #fafbfc; }
.np-col-variant { color: var(--terminal-muted); font-size: 12.5px; }
.np-col-num    { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.np-col-st     { width: 28px; text-align: center; }
.np-tab        { font-family: var(--f-mono); letter-spacing: -0.01em; }

.np-terminal__plat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.np-terminal__ico {
    --c: var(--hero-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 5px;
    background: color-mix(in srgb, var(--c) 12%, #fff);
}
.np-terminal__ico img {
    width: 14px; height: 14px;
    filter: brightness(0) saturate(100%) invert(6%);
}

/* Foot — just-sold feed */
.np-terminal__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: #0a0a0a;
    color: #e5e7eb;
    font-family: var(--f-mono);
    font-size: 12px;
    overflow: hidden;
}
.np-terminal__foot-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #32d583;
    padding: 3px 7px;
    border: 1px solid rgba(50,213,131,.4);
    border-radius: 4px;
    flex-shrink: 0;
}
.np-terminal__feed {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
    position: relative;
}
.np-terminal__feed span {
    display: inline-block;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    font-family: var(--f-mono);
    color: #d4d4d8;
}
.np-terminal__feed span strong { color: #fff; font-weight: 700; font-family: inherit; }
.np-terminal__feed.is-fade span { opacity: 0; transform: translateY(-4px); }
.np-terminal__ago {
    color: #71717a;
    font-style: normal;
    margin-left: 4px;
}

/* Mobile tuning */
@media (max-width: 640px) {
    .np-hero { padding: 36px 0 36px; }
    .np-hero__title { font-size: clamp(36px, 10vw, 52px); letter-spacing: -0.04em; }
    .np-hero__sub   { font-size: 14.5px; }
    .np-hero__ctas .np-cta { flex: 1 1 auto; min-width: 140px; justify-content: center; }

    .np-terminal__clock { display: none; }
    .np-terminal__bar > div { padding: 0 8px; }
    .np-terminal__bar-val { font-size: 15.5px; }
    .np-terminal__table td, .np-terminal__table thead th { padding: 10px 10px; }
    .np-col-variant { display: none; } /* too tight on narrow mobile */
}

/* Small signal dots used elsewhere */
.np-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; }
.np-dot--green { background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.18); }

/* =========================================================================
   STOCKBAR — platforms name marquee (hero → platforms separator)
   ========================================================================= */
.np-stockbar {
    display: flex;
    align-items: stretch;
    background: #0a0a0a;
    color: #d4d4d8;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    overflow: hidden;
    font-family: var(--f-mono);
    font-size: 11.5px;
    letter-spacing: .02em;
    position: relative;
    z-index: 2;
}
.np-stockbar__label {
    font-family: var(--f-mono);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #000;
    color: #32d583;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 10.5px;
    border-right: 1px solid #1f1f1f;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
    min-width: 128px;
}
.np-stockbar::before, .np-stockbar::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
}
.np-stockbar::before {
    left: 148px;
    background: linear-gradient(90deg, rgba(10,10,10,1), rgba(10,10,10,0));
}
.np-stockbar::after {
    right: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0), rgba(10,10,10,1));
}
@media (max-width: 640px) {
    .np-stockbar::before { left: 96px; }
    .np-stockbar__label { min-width: 88px; padding: 0 12px; font-size: 10px; letter-spacing: .1em; }
}

.np-stockbar__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #32d583;
    box-shadow: 0 0 0 3px rgba(50,213,131,.2);
    animation: pulseDot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

.np-stockbar__track {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}
.np-stockbar__trail {
    display: inline-flex;
    gap: 20px;
    white-space: nowrap;
    padding: 11px 0;
    animation: stockScroll 60s linear infinite;
    will-change: transform;
}
.np-stockbar__item strong {
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
}
.np-stockbar__sep { color: #3f3f46; }

@keyframes stockScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (hover: hover) {
    .np-stockbar:hover .np-stockbar__trail { animation-play-state: paused; }
}

/* =========================================================================
   DIVIDER — elegant text-less section separator
   (fading rules + trio of dots, centered, quiet)
   ========================================================================= */
.np-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: clamp(32px, 3.5vw, 48px) 0;
}
.np-divider__rule {
    width: clamp(60px, 10vw, 120px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ink-200));
}
.np-divider__rule--right {
    background: linear-gradient(90deg, var(--ink-200), transparent);
}
.np-divider__dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.np-divider__dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--ink-300);
}
.np-divider__dot--mid {
    width: 5px; height: 5px;
    background: var(--ink-500);
}

/* =========================================================================
   CHAPTER marker (editorial section index)
   ========================================================================= */
.np-chapter {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    font-family: var(--f-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-400);
}
.np-chapter__num   { color: var(--ink-900); font-weight: 700; }
.np-chapter__sep   { color: var(--ink-300); font-weight: 400; }
.np-chapter__label { color: var(--ink-700); font-weight: 600; }

/* =========================================================================
   SECTION SHELL
   ========================================================================= */
.np-section {
    padding: var(--section-y) 0;
    position: relative;
}
.np-section--alt {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--surface-1) 40%, var(--surface-1) 60%, #ffffff 100%);
    border-top: 1px solid var(--ink-200);
    border-bottom: 1px solid var(--ink-200);
}
.np-section--alt::before {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(10,10,10,0.05) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 70%);
}
.np-section > * { position: relative; z-index: 1; }

.np-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.np-section__head--center {
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.np-section__head--center > div { max-width: 640px; }

.np-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-700);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    padding: 5px 10px;
    background: var(--green-50);
    border-radius: 999px;
    border: 1px solid rgba(16,185,129,.18);
}
.np-eyebrow--blue  { color: #1d4ed8; background: var(--blue-50);  border-color: rgba(59,130,246,.22); }
.np-eyebrow--amber { color: #B45309; background: var(--amber-50); border-color: rgba(245,158,11,.28); }
.np-eyebrow--pink  { color: #be185d; background: var(--pink-50);  border-color: rgba(236,72,153,.22); }
.np-section__title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--ink-900);
}
.np-section__sub {
    margin-top: 14px;
    font-size: 15.5px;
    color: var(--ink-500);
    max-width: 58ch;
    line-height: 1.6;
}

/* =========================================================================
   CATEGORY CHIP FILTER (above platforms grid)
   ========================================================================= */
.np-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -20px 0 28px;
    padding: 6px;
    background: var(--surface-2);
    border-radius: 999px;
    align-self: flex-start;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}
.np-cats::-webkit-scrollbar { display: none; }
.np-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-600);
    border-radius: 999px;
    white-space: nowrap;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.np-cat:hover { color: var(--ink-900); }
.np-cat.is-active {
    background: #fff;
    color: var(--ink-900);
    box-shadow: 0 1px 2px rgba(10,10,10,.06), 0 4px 10px -6px rgba(10,10,10,.1);
}
.np-cat__n {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--ink-100);
    color: var(--ink-600);
    font-weight: 700;
}
.np-cat.is-active .np-cat__n { background: var(--accent-50); color: var(--accent-700); }

/* When filter hides a tile */
.np-platform.is-hidden { display: none; }

/* =========================================================================
   PLATFORMS GRID
   ========================================================================= */
.np-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 640px)  { .np-platforms { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .np-platforms { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.np-platform {
    --plat-color: #0a0a0a;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px 16px;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 12px;
    color: var(--ink-900);
    overflow: hidden;
    isolation: isolate;
    min-height: 190px;
    transition: border-color var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.np-platform::before {
    /* very subtle diagonal tint of the platform color */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg,
        color-mix(in srgb, var(--plat-color) 5%, transparent) 0%,
        transparent 55%);
    z-index: -1;
}
.np-platform::after {
    /* hover-only corner bloom */
    content: "";
    position: absolute;
    top: -36px;
    right: -36px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle,
        color-mix(in srgb, var(--plat-color) 20%, transparent) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity .25s var(--ease);
    z-index: -1;
}
.np-platform:hover {
    border-color: color-mix(in srgb, var(--plat-color) 55%, var(--ink-300));
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -20px rgba(10,10,10,.22);
}
.np-platform:hover::after { opacity: 1; }

/* ── Head: icon + category badge ── */
.np-platform__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.np-platform__icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--plat-color) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--plat-color) 15%, transparent);
    flex-shrink: 0;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.np-platform:hover .np-platform__icon {
    background: color-mix(in srgb, var(--plat-color) 18%, #fff);
    border-color: color-mix(in srgb, var(--plat-color) 28%, transparent);
}
.np-platform__icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(6%);
    transition: filter var(--dur) var(--ease);
}
.np-platform:hover .np-platform__icon img { filter: none; }

.np-platform__cat {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 7px;
    border-radius: 4px;
    background: #fff;
    color: var(--ink-500);
    border: 1px solid var(--ink-200);
    line-height: 1.2;
    flex-shrink: 0;
}

/* ── Body: name + tagline ── */
.np-platform__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.np-platform__name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin: 0;
}
.np-platform__desc {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.45;
    margin: 0;
}

/* ── Foot: price + arrow ── */
.np-platform__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--ink-100);
}
.np-platform__price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.np-platform__from-label {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-400);
}
.np-platform__price strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    font-variant-numeric: tabular-nums;
}
.np-platform__arrow {
    color: var(--ink-400);
    transform: translateX(-4px);
    opacity: 0;
    transition: transform var(--dur) var(--ease),
                opacity var(--dur) var(--ease),
                color var(--dur) var(--ease);
}
.np-platform:hover .np-platform__arrow {
    color: var(--plat-color);
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================================
   FEATURED PRODUCTS GRID
   ========================================================================= */
.np-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 700px)  { .np-products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .np-products { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.np-product {
    --accent: var(--ink-900);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-xl);
    transition: border-color var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.np-product::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--dur-slow) var(--ease);
    z-index: -1;
}
.np-product:hover {
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -20px rgba(10,10,10,.22);
}
.np-product:hover::before { opacity: 1; }

.np-product__head { display: flex; align-items: flex-start; gap: 12px; }
.np-product__icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--accent) 10%, var(--surface-2));
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease);
}
.np-product:hover .np-product__icon { transform: scale(1.08) rotate(-4deg); }
.np-product__icon img {
    width: 22px; height: 22px;
    filter: brightness(0) saturate(100%) invert(6%);
    transition: filter var(--dur) var(--ease);
}
.np-product:hover .np-product__icon img { filter: none; }
.np-product__brand { flex: 1; min-width: 0; }
.np-product__brand h3 { font-size: 15.5px; font-weight: 700; color: var(--ink-900); margin-bottom: 2px; }
.np-product__brand p { font-size: 13px; color: var(--ink-500); line-height: 1.4; }

.np-product__foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--ink-100);
}
.np-product__price { display: flex; align-items: baseline; gap: 4px; }
.np-product__price-amt { font-size: 24px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink-900); }
.np-product__price-unit { font-size: 12px; color: var(--ink-500); }
.np-product__stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-600); font-weight: 500; }

.np-product__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--ink-900);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--ink-900);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
                transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.np-product__cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -14px rgba(16,185,129,.55);
}
.np-product__cta:active { transform: translateY(0); }

.np-tag {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    white-space: nowrap;
    align-self: flex-start;
}
.np-tag--emerald { color: var(--green);  background: var(--green-50);  }
.np-tag--blue    { color: var(--blue);   background: var(--blue-50);   }
.np-tag--indigo  { color: var(--indigo); background: var(--indigo-50); }
.np-tag--amber   { color: #B45309; background: var(--amber-50);  }
.np-tag--rose    { color: var(--rose);   background: var(--rose-50);   }
.np-tag--pink    { color: var(--pink);   background: var(--pink-50);   }
.np-tag--slate   { color: var(--slate);  background: var(--slate-50);  }

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.np-steps {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 880px) { .np-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.np-step {
    --step-c: var(--accent);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px 16px;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate;
    min-height: 200px;
    transition: border-color var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.np-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg,
        color-mix(in srgb, var(--step-c) 5%, transparent) 0%,
        transparent 55%);
    z-index: -1;
}
.np-step::after {
    content: "";
    position: absolute;
    top: -36px; right: -36px;
    width: 140px; height: 140px;
    background: radial-gradient(circle,
        color-mix(in srgb, var(--step-c) 20%, transparent) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity .25s var(--ease);
    z-index: -1;
}
.np-step:hover {
    border-color: color-mix(in srgb, var(--step-c) 55%, var(--ink-300));
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -20px rgba(10,10,10,.22);
}
.np-step:hover::after { opacity: 1; }
.np-step:nth-child(1) { --step-c: var(--accent); }
.np-step:nth-child(2) { --step-c: var(--blue); }
.np-step:nth-child(3) { --step-c: var(--pink); }

/* Head: icon + num badge — mirrors .np-platform__head */
.np-step__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.np-step__icon {
    width: 40px; height: 40px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--step-c) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--step-c) 15%, transparent);
    color: var(--step-c);
    flex-shrink: 0;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.np-step:hover .np-step__icon {
    background: color-mix(in srgb, var(--step-c) 18%, #fff);
    border-color: color-mix(in srgb, var(--step-c) 28%, transparent);
}
.np-step__num {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 3px 7px;
    border-radius: 4px;
    background: color-mix(in srgb, var(--step-c) 8%, #fff);
    color: var(--step-c);
    border: 1px solid color-mix(in srgb, var(--step-c) 22%, transparent);
    line-height: 1.2;
    flex-shrink: 0;
}

/* Body: title + desc */
.np-step__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.np-step__title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin: 0;
}
.np-step__desc {
    font-size: 13.5px;
    color: var(--ink-500);
    line-height: 1.55;
    margin: 0;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.np-faq {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.np-faq__item {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    overflow: hidden;
}
.np-faq__item[open] {
    border-color: var(--ink-900);
    box-shadow: 0 10px 24px -14px rgba(10,10,10,.14);
}
.np-faq__q {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink-900);
    letter-spacing: -0.01em;
    transition: color var(--dur) var(--ease);
}
.np-faq__q::-webkit-details-marker { display: none; }
.np-faq__q:hover { color: var(--accent-700); }
.np-faq__icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--ink-900);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.np-faq__item[open] .np-faq__icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
    color: #fff;
}
.np-faq__a {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--ink-600);
    line-height: 1.7;
    max-width: 78ch;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.np-footer {
    background: var(--ink-900);
    color: #d4d4d4;
    padding: 80px 0 36px;
    position: relative;
    overflow: hidden;
}
.np-footer::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,.18) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.np-footer::after {
    content: "";
    position: absolute;
    bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.np-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    position: relative;
    z-index: 1;
}
.np-footer__grid {
    display: grid;
    gap: 48px 32px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .np-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .np-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.np-footer__brand-col { max-width: 360px; }
.np-brand--footer { color: #fff; font-size: 18px; margin-bottom: 18px; }
.np-brand--footer .np-brand__word { color: #fff; }
.np-brand--footer .np-brand__word em {
    background: linear-gradient(90deg, var(--accent) 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.np-footer__tagline {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.np-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; }
.np-pay-chip {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e5e5e5;
    background: #1a1a1a;
    border: 1px solid #262626;
    border-radius: var(--radius-sm);
}
.np-pay-chip--feature {
    color: #FB923C;
    border-color: rgba(251,146,60,.3);
    background: rgba(251,146,60,.08);
}

.np-footer__col h3 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.np-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.np-footer__col a {
    color: #a3a3a3;
    font-size: 14px;
    transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
    display: inline-block;
}
.np-footer__col a:hover { color: #fff; padding-left: 4px; }

.np-footer__bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #1f1f1f;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.np-footer__bottom p { font-size: 12px; color: #737373; }
.np-footer__fineprint { max-width: 80ch; font-style: italic; }

/* =========================================================================
   TOAST (add-to-cart feedback)
   ========================================================================= */
.np-toasts {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: calc(100vw - 40px);
}
.np-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 14px;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px -20px rgba(10,10,10,.28), 0 4px 10px -4px rgba(10,10,10,.08);
    color: var(--ink-900);
    font-size: 14px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.np-toast.is-show { opacity: 1; transform: translateY(0); }
.np-toast__icon {
    width: 30px; height: 30px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--green-50);
    color: var(--accent-700);
    display: inline-flex; align-items: center; justify-content: center;
}
.np-toast__body strong { display: block; font-weight: 700; font-size: 13px; color: var(--ink-900); }
.np-toast__body span  { color: var(--ink-500); font-size: 12.5px; }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
    transition-delay: var(--d, 0s);
}
[data-reveal].in-view, html:not(.js) [data-reveal] { opacity: 1; transform: translateY(0); }

/* =========================================================================
   ACCESSIBILITY / MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

@media print {
    .np-header, .np-ticker, .np-mobile, .np-hero__bg { display: none; }
    body { background: #fff; color: #000; }
}
