:root {
            --primary: #eb3968;
            --primary-glow: rgba(235, 57, 104, 0.3);
            --bg: #0b1121;
            --surface: #151e32;
            --text: #f8fafc;
            --muted: #94a3b8;
            --radius: 18px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            --transition: 0.15s ease;
        }

        /* Base Resets */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            white-space: normal;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .hash-xl { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        .hash-lg { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
        .hash-md { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 1rem; }
        
        .echo { color: var(--muted); font-size: 1.125rem; }
        .echo-sm { color: var(--muted); font-size: 0.875rem; }

        /* Navigation (Reused Structure) */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 17, 33, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

        .chain {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .wire {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color var(--transition);
        }

        .wire:hover, .wire.active {
            color: var(--primary);
        }

        /* Layout Containers */
        .tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

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

        /* Block 1: Hero (acquire) - Diagonal Split Variant */
        .nexus {
            position: relative;
            padding: 8rem 0 6rem;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .nexus::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 140%;
            background: linear-gradient(135deg, rgba(235, 57, 104, 0.15) 0%, transparent 80%);
            transform: rotate(-15deg);
            z-index: 0;
            pointer-events: none;
            border-radius: 40%;
            filter: blur(60px);
        }

        .nexus .tunnel {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .nexus-core {
            flex: 1;
            min-width: 300px;
        }

        .nexus-lens {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nexus-lens .lens {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
            transform: translateY(0);
            transition: transform var(--transition);
        }

        .nexus-lens .lens:hover {
            transform: translateY(-10px);
        }

        /* Buttons & CTA */
        .pulse-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            padding: 1.2rem 2.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1.125rem;
            text-decoration: none;
            box-shadow: 0 8px 25px var(--primary-glow);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition);
            margin-top: 2rem;
            cursor: pointer;
        }

        .pulse-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px var(--primary-glow);
            background: #f74574;
        }

        .pulse-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            color: var(--text);
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition);
            width: 100%;
            margin-top: 1.5rem;
        }

        .pulse-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: #fff;
        }

        /* Block 2: Comparison / Platform Selection */
        .prism {
            padding: 6rem 0;
            background: radial-gradient(circle at center, #111827 0%, var(--bg) 100%);
            border-top: 1px solid rgba(255,255,255,0.02);
        }

        .prism-crown {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .prism-media {
            margin-bottom: 4rem;
            text-align: center;
        }

        .prism-media .lens {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .vault {
            background: var(--surface);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            flex: 1;
            min-width: 300px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .vault:hover {
            transform: translateY(-5px);
            border-color: rgba(235, 57, 104, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .glyph {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            padding: 10px;
            background: rgba(255,255,255,0.03);
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.08);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .glyph svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

        .belt {
            margin: 1.5rem 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            flex-grow: 1;
        }

        .belt dt {
            color: var(--muted);
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
        }

        .belt dd {
            color: var(--text);
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            font-family: var(--font-mono);
        }

        /* Block 3: Steps / Installation Guide */
        .apex {
            padding: 6rem 0 8rem;
            background: var(--bg);
        }

        .apex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            counter-reset: step;
            margin-top: 4rem;
        }

        .pod {
            position: relative;
            padding: 2rem;
            background: rgba(21, 30, 50, 0.4);
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.03);
            transition: background var(--transition);
        }

        .pod:hover {
            background: rgba(21, 30, 50, 0.8);
        }

        .pod::before {
            counter-increment: step;
            content: "0" counter(step);
            display: block;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(255,255,255,0.05);
            margin-bottom: 1rem;
            line-height: 1;
            font-family: var(--font-mono);
            transition: color var(--transition);
        }

        .pod:hover::before {
            color: var(--primary-glow);
        }

        /* Footer */
        .root {
            background: var(--surface);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 0 2rem;
        }

        .core {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .depth {
            flex: 1;
            min-width: 200px;
        }

        .depth-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .sole {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            color: var(--muted);
            font-size: 0.875rem;
        }

        .sole-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .sole-links a {
            color: var(--muted);
            text-decoration: none;
            transition: color var(--transition);
        }

        .sole-links a:hover {
            color: var(--text);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .radar {
                flex-direction: column;
                padding: 1rem;
            }
            .chain {
                justify-content: center;
                gap: 1rem;
            }
            .nexus {
                padding: 6rem 0 4rem;
                text-align: center;
            }
            .nexus::before {
                display: none;
            }
            .nexus .tunnel {
                flex-direction: column;
                gap: 2rem;
            }
            .hash-xl {
                font-size: 2.25rem;
            }
            .apex-grid {
                grid-template-columns: 1fr;
            }
            .core {
                flex-direction: column;
            }
        }

.route-crown {
    font-family: var(--font-sans);
    line-height: 1.6;
    word-break: break-word;
    color: var(--light-text);
}
.route-crown,
.route-crown *,
.route-crown *::before,
.route-crown *::after {
    box-sizing: border-box;
}

.route-crown nav,
.route-crown div,
.route-crown section,
.route-crown article,
.route-crown aside,
.route-crown p,
.route-crown h1,
.route-crown h2,
.route-crown h3,
.route-crown h4,
.route-crown h5,
.route-crown h6,
.route-crown a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.route-crown a.route-wire {
    --aisite-shell-nav-padding: 0;
    --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;
}

.route-crown a.route-wire,
.route-crown a.route-wire:hover,
.route-crown a.route-wire:focus,
.route-crown a.route-wire:active,
.route-crown a.route-wire.active,
.route-crown a.route-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);
}

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(11, 17, 33, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.route-crown .route-radar{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }

.route-crown .route-radar > *{ min-width: 0; }

.route-crown .route-seal img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-crown .route-chain{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.route-crown .route-chain > *{ min-width: 0; }

.route-crown .route-wire{
            color: #f8fafc;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.15s ease;
            position: relative;
        }

.route-crown .route-wire:hover, .route-crown .route-wire.active{
            color: #eb3968;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #eb3968;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-crown .route-radar{
                flex-direction: column;
                gap: 1rem;
            }

.route-crown .route-chain{
                gap: 1rem;
                justify-content: center;
            }}

.route-crown {
    background: rgb(11, 17, 33);
    background-image: none;
}

.root-sole {
    font-family: var(--font-sans);
    line-height: 1.6;
    word-break: break-word;
    color: var(--light-text);
}
.root-sole,
.root-sole *,
.root-sole *::before,
.root-sole *::after {
    box-sizing: border-box;
}

.root-sole nav,
.root-sole div,
.root-sole section,
.root-sole article,
.root-sole aside,
.root-sole p,
.root-sole h1,
.root-sole h2,
.root-sole h3,
.root-sole h4,
.root-sole h5,
.root-sole h6,
.root-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.root-sole .root-echo-base{ font-size: 1rem; color: #94a3b8; }

.root-sole .root-mesh-center{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.root-sole{
            background: #1e293b;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.root-sole .root-sole-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

.root-sole .root-sole-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f8fafc;
            margin-bottom: 1rem;
            display: block;
        }

.root-sole .root-sole-hash{
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

.root-sole .root-sole-batch{
            list-style: none;
        }

.root-sole .root-sole-batch li{ margin-bottom: 0.8rem; }

.root-sole .root-sole-wire{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.15s ease;
        }

.root-sole .root-sole-wire:hover{
            color: #eb3968;
        }

.root-sole .root-sole-depth{
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #94a3b8;
            font-size: 0.9rem;
        }