:root {
    --bg-main: #fcfdfd;
    --bg-alt: #f1f5f9;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --accent: #61f675;
    --accent-dark: #10b981;
    --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-glow: 0 0 20px rgba(97, 246, 117, 0.3);
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Typography */
.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;
    word-break: break-word;
    overflow-wrap: break-word;
}

.warp-byte, .flare-byte, .radar-byte {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.node-byte {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.surge-array, .node-array, .packet-array {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.8;
}

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

.tunnel-blip.radar-tunnel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.glyph {
    display: flex;
    align-items: center;
    min-width: 0;
}

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

.lens-flux {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    min-width: 0;
}

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

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

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

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

/* Layout Utilities */
.tunnel-blip {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.flux-core {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

/* Section 1: Hero Download (Acquire) */
.surge-blip {
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at top center, rgba(97, 246, 117, 0.1) 0%, rgba(255,255,255,0) 70%);
    position: relative;
}

.surge-mesh {
    align-items: center;
    gap: 4rem;
}

.surge-cell-left {
    flex: 1 1 500px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.surge-cell-right {
    flex: 1 1 400px;
    min-width: 0;
    position: relative;
}

.spark-dash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--text-dark);
    color: var(--accent);
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    border: none;
    min-width: 0;
}

.spark-dash:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 25px 30px -5px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.spark-dash svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.sync-crest {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    min-width: 0;
}

.sync-mesh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    min-width: 0;
}

.sync-mesh svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-dark);
}

.band-blip {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.band-blip:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.band {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Section 2: Version Panel (FAQ/Compare) */
.warp-tunnel {
    padding: 5rem 0;
    background-color: var(--bg-main);
}

.node-flux {
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

.node-cell:hover::before {
    background: var(--accent);
}

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

.apex-blip svg {
    width: 28px;
    height: 28px;
    fill: var(--text-dark);
}

.node-cell.primary .apex-blip {
    background: rgba(97, 246, 117, 0.15);
}

.node-cell.primary .apex-blip svg {
    fill: var(--accent-dark);
}

.spark-wire {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
    width: max-content;
}

.spark-wire svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.node-cell:hover .spark-wire {
    border-bottom-color: var(--accent);
}

.node-cell:hover .spark-wire svg {
    transform: translateX(4px);
}

.warp-mesh {
    gap: 4rem;
    align-items: center;
}

.warp-cell-left {
    flex: 1 1 45%;
    min-width: 0;
}
.warp-cell-right {
    flex: 1 1 45%;
    min-width: 0;
}

/* Section 3: Environment Requirements (Acquire) */
.flare-cloak {
    padding: 5rem 0;
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.flare-flux {
    justify-content: center;
    text-align: center;
}

.packet-flux {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    min-width: 0;
}

.packet-mesh {
    background: #fff;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 0;
    border: 1px solid rgba(0,0,0,0.02);
}

.packet-mesh svg {
    width: 24px;
    height: 24px;
    fill: #0078d7; /* Windows blue accent */
}

.packet-mesh:nth-child(2) svg {
    fill: #512bd4; /* .NET purple accent */
}

/* Section 4: Security Verification (Data UI / Comparison) */
.radar-blip {
    padding: 5rem 0 6rem;
    background-color: var(--bg-main);
}

.cell-flux {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cell-mesh {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    align-items: center;
    min-width: 0;
}

.cell-mesh:last-child {
    border-bottom: none;
}

.cell-mesh:hover {
    background-color: rgba(241, 245, 249, 0.5);
}

.cell-byte {
    flex: 0 0 250px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cell-byte svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}

.cell-array {
    flex: 1 1 300px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    word-break: break-all;
    min-width: 0;
}

/* Footer */
.sole-base {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 4rem 0 2rem;
}

.anchor-flux {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    min-width: 0;
}

.root-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    min-width: 0;
}

.root-wire {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-left: 2rem;
    min-width: 0;
}

.root-wire:hover {
    color: #fff;
}

.sole-array {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .surge-byte {
        font-size: 3rem;
    }
    .warp-mesh {
        flex-direction: column;
    }
}

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

    .surge-mesh {
        flex-direction: column;
        gap: 2rem;
    }

    .surge-cell-left, .surge-cell-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .band-blip {
        transform: none;
    }

    .cell-mesh {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cell-byte {
        flex: 1 1 auto;
    }
    
    .anchor-flux {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .root-wire {
        margin: 0 1rem;
    }
}

.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;
        }