:root {
            --bg-main: #fcfdfd;
            --bg-alt: #f1f5f9;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --brand: #61f675;
            --brand-dark: #45c456;
            --radius-md: 14px;
            --radius-lg: 18px;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
            --shadow-hover: 0 25px 30px -5px rgba(0, 0, 0, 0.08), 0 15px 15px -5px rgba(0, 0, 0, 0.04);
            --transition: 0.35s ease;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font);
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3, h4, p {
            margin-top: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p {
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all var(--transition);
        }

        /* Nav Structure (Mandatory Reuse) */
        .pip-cloak {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 253, 253, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .tunnel-blip {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .glyph img {
            height: 32px;
            width: auto;
            display: block;
        }

        .lens-flux {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .radar-wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 0.5rem 0;
            position: relative;
        }

        .radar-wire:hover {
            color: var(--text-dark);
        }

        .radar-wire.active,
        .active-wire {
            color: var(--text-dark);
            font-weight: 700;
        }

        .radar-wire.active::after,
        .active-wire::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--brand);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .lens-flux {
                gap: 1rem;
                justify-content: center;
                width: 100%;
                margin-top: 1rem;
            }
        }

        /* Main Container */
        .core-blip {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Hero Intro (Vertical Stack) */
        .surge-blip {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 7rem 5% 5rem;
            background: radial-gradient(circle at top center, rgba(97, 246, 117, 0.12) 0%, rgba(252, 253, 253, 0) 70%);
            flex-wrap: wrap;
        }

        .surge-blip-inner {
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
        }

        .apex-flare {
            width: 80px;
            height: 80px;
            margin-bottom: 2rem;
            color: var(--text-dark);
            background: #fff;
            border-radius: 24px;
            padding: 16px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .surge-byte {
            margin: 0 0 1.5rem 0;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -0.02em;
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            color: var(--text-dark);
            white-space: normal;
        }

        .surge-array {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 680px;
        }

        .spark-dash {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--text-dark);
            color: var(--brand);
            padding: 1.1rem 2.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .spark-dash:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: #fff;
        }

        /* Mode Comparison (Grid) */
        .warp-tunnel {
            background-color: var(--bg-alt);
            padding: 6rem 5%;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
        }

        .warp-byte {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
        }

        .warp-array {
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.1rem;
            max-width: 600px;
        }

        .flux-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
        }

        .node-cell {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            transition: transform var(--transition), box-shadow var(--transition);
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .node-cell:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .node-cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--brand), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .node-cell:hover::before {
            opacity: 1;
        }

        .node-cell.recommend::before {
            opacity: 1;
            background: var(--brand);
        }

        .apex-mesh {
            width: 56px;
            height: 56px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            background: var(--bg-alt);
            color: var(--text-dark);
        }

        .recommend .apex-mesh {
            background: var(--text-dark);
            color: var(--brand);
        }

        .node-byte {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .status-ray {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            background: var(--brand);
            color: var(--text-dark);
            border-radius: 100px;
            font-weight: 700;
        }

        .node-array {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
            flex-grow: 1;
        }

        /* Advanced Config (Div Detail) */
        .flare-cloak {
            padding: 6rem 5%;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            background-color: var(--bg-main);
        }

        .flare-inner {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .flare-blip {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

        .flare-visual {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .mock-node {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 2rem;
            width: 100%;
            max-width: 450px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mock-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: var(--bg-alt);
            border-radius: var(--radius-md);
            flex-wrap: wrap;
        }

        .mock-array {
            font-family: monospace;
            font-size: 0.9rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .mock-tag {
            font-size: 0.8rem;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            background: rgba(97, 246, 117, 0.2);
            color: var(--brand-dark);
            font-weight: 700;
        }

        .mock-tag.direct {
            background: rgba(15, 23, 42, 0.1);
            color: var(--text-muted);
        }

        .flare-byte {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .flare-array {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .lens-flux {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .lens-mesh {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .lens-apex {
            color: var(--brand);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .lens-array h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .lens-array p {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* FAQ Section */
        .faq-tunnel {
            background-color: var(--bg-alt);
            padding: 6rem 5%;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
        }

        .faq-inner {
            max-width: 800px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-cell {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 1.5rem 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            transition: box-shadow var(--transition);
        }

        .faq-cell:hover {
            box-shadow: var(--shadow-lg);
        }

        .faq-byte {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .faq-byte::before {
            content: 'Q.';
            color: var(--brand-dark);
            font-weight: 800;
        }

        .faq-array {
            color: var(--text-muted);
            margin: 0;
            padding-left: 2rem;
            line-height: 1.6;
        }

        /* Footer */
        .base-root {
            background: var(--bg-main);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 4rem 5% 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-wrap: wrap;
        }

        .base-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .base-flux {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .base-wire {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .base-wire:hover {
            color: var(--text-dark);
        }

        .base-legal {
            color: #94a3b8;
            font-size: 0.85rem;
            width: 100%;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 2rem;
        }

        @media (max-width: 1024px) {
            .flare-inner {
                flex-direction: column;
                gap: 3rem;
            }
        }

.nexus-pip-cloak,
.nexus-pip-cloak *,
.nexus-pip-cloak *::before,
.nexus-pip-cloak *::after {
    box-sizing: border-box;
}

.nexus-pip-cloak [role="navigation"],
.nexus-pip-cloak div,
.nexus-pip-cloak section,
.nexus-pip-cloak article,
.nexus-pip-cloak aside,
.nexus-pip-cloak p,
.nexus-pip-cloak h1,
.nexus-pip-cloak h2,
.nexus-pip-cloak h3,
.nexus-pip-cloak h4,
.nexus-pip-cloak h5,
.nexus-pip-cloak h6,
.nexus-pip-cloak a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.nexus-pip-cloak p,
.nexus-pip-cloak h1,
.nexus-pip-cloak h2,
.nexus-pip-cloak h3,
.nexus-pip-cloak h4,
.nexus-pip-cloak h5,
.nexus-pip-cloak h6 {
    text-decoration: none;
}

.nexus-pip-cloak img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.nexus-pip-cloak {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire,
.nexus-pip-cloak a.nexus-radar-wire {
    --aisite-shell-nav-padding: 0.5rem 1rem;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire,
.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire:hover,
.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire:focus,
.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire:active,
.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire.active,
.nexus-pip-cloak a.nexus-radar-wire.nexus-active-wire[aria-current="page"],
.nexus-pip-cloak a.nexus-radar-wire,
.nexus-pip-cloak a.nexus-radar-wire:hover,
.nexus-pip-cloak a.nexus-radar-wire:focus,
.nexus-pip-cloak a.nexus-radar-wire:active,
.nexus-pip-cloak a.nexus-radar-wire.active,
.nexus-pip-cloak a.nexus-radar-wire[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.nexus-pip-cloak .nexus-tunnel-blip{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            box-sizing: border-box;
        }

.nexus-pip-cloak{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
        }

.nexus-pip-cloak .nexus-radar-tunnel{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }

.nexus-pip-cloak .nexus-radar-tunnel > *{
            min-width: 0;
        }

.nexus-pip-cloak .nexus-glyph{
            flex-shrink: 0;
            width: 140px;
        }

.nexus-pip-cloak .nexus-lens-flux{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

.nexus-pip-cloak .nexus-lens-flux > *{
            min-width: 0;
        }

.nexus-pip-cloak .nexus-radar-wire{
            font-weight: 600;
            color: #475569;
            font-size: 0.95rem;
            padding: 0.5rem 1rem;
            border-radius: 14px;
        }

.nexus-pip-cloak .nexus-radar-wire:hover, .nexus-pip-cloak .nexus-radar-wire:focus{
            color: #0f172a;
            background-color: #f1f5f9;
        }

.nexus-pip-cloak .nexus-active-wire{
            color: #0f172a;
            background-color: #61f675;
        }

.nexus-pip-cloak .nexus-active-wire:hover{
            background-color: #4ade62;
        }

@media (max-width: 768px){.nexus-pip-cloak .nexus-radar-tunnel{
                justify-content: center;
                flex-direction: column;
                gap: 1rem;
            }

.nexus-pip-cloak .nexus-lens-flux{
                justify-content: center;
            }}

.nexus-pip-cloak {
    background: rgb(255, 255, 255);
    background-image: none;
}

.base-sole-base,
.base-sole-base *,
.base-sole-base *::before,
.base-sole-base *::after {
    box-sizing: border-box;
}

.base-sole-base [role="navigation"],
.base-sole-base div,
.base-sole-base section,
.base-sole-base article,
.base-sole-base aside,
.base-sole-base p,
.base-sole-base h1,
.base-sole-base h2,
.base-sole-base h3,
.base-sole-base h4,
.base-sole-base h5,
.base-sole-base h6,
.base-sole-base a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.base-sole-base p,
.base-sole-base h1,
.base-sole-base h2,
.base-sole-base h3,
.base-sole-base h4,
.base-sole-base h5,
.base-sole-base h6 {
    text-decoration: none;
}

.base-sole-base img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.base-sole-base {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.base-sole-base a,
.base-sole-base a:hover,
.base-sole-base a:focus,
.base-sole-base a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.base-sole-base .base-tunnel-blip{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            box-sizing: border-box;
        }

.base-sole-base{
            background-color: #f1f5f9;
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.base-sole-base .base-sole-byte{
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 1rem;
        }

.base-sole-base .base-sole-array{
            color: #475569;
            font-size: 0.9rem;
        }