:root {
            --cyan-base: #5bcbe1;
            --cyan-glow: rgba(91, 203, 225, 0.25);
            --cyan-dim: rgba(91, 203, 225, 0.1);
            --bg-deep: #05080f;
            --surface-one: #0d121c;
            --surface-two: #151c28;
            --border-subtle: #232d3d;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --radius-md: 12px;
            --radius-lg: 16px;
            --transition: all 0.25s ease;
        }

        /* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
            background-image: 
                linear-gradient(var(--border-subtle) 1px, transparent 1px),
                linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
            background-size: 60px 60px;
            background-position: top center;
            background-attachment: fixed;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        h1, h2, h3, h4, p, figure {
            margin: 0;
            white-space: normal;
        }

        /* Layout Primitives */
        .tunnel-core {
            display: block;
            width: 100%;
        }

        .zone-bound {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .pod-flex {
            display: flex;
            flex-wrap: wrap;
        }

        /* Header & Nav (Crown & Orbit) */
        .crown-zone {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .orbit-mesh {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .sigil {
            display: flex;
            align-items: center;
        }

        .sigil img {
            height: 28px;
            width: auto;
            display: block;
        }

        .orbit-pod {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .orbit-wire {
            padding: 8px 16px;
            font-size: 0.95rem;
            color: var(--text-muted);
            border-radius: 6px;
            transition: var(--transition);
            font-weight: 500;
        }

        .orbit-wire:hover,
        .orbit-wire.active {
            color: var(--cyan-base);
            background: var(--cyan-dim);
        }

        /* Hero / Portal Veil */
        .portal-veil {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
            background: radial-gradient(circle at 50% 0%, rgba(91, 203, 225, 0.08) 0%, transparent 60%);
        }

        .portal-layout {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .apex-giant {
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 24px;
            text-shadow: 0 4px 24px rgba(0,0,0,0.5);
        }

        .apex-giant span {
            color: var(--cyan-base);
        }

        .cipher-lead {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 48px;
            line-height: 1.6;
        }

        .pulse-bolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: var(--cyan-base);
            color: #000000;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: var(--radius-md);
            transition: var(--transition);
            box-shadow: 0 0 20px var(--cyan-glow);
            gap: 12px;
        }

        .pulse-bolt:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--cyan-glow);
            background: #ffffff;
        }

        .pulse-bolt svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .portal-metrics {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-top: 60px;
        }

        .metric-peg {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--surface-one);
            border: 1px solid var(--border-subtle);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .metric-peg::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--cyan-base);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--cyan-base);
        }

        /* Data UI Accent Panel in Hero */
        .portal-accent {
            margin-top: 80px;
            width: 100%;
            max-width: 1000px;
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 24px 50px rgba(0,0,0,0.5);
            background: var(--surface-one);
        }

        .portal-accent::before {
            content: '';
            display: block;
            height: 32px;
            background: var(--surface-two);
            border-bottom: 1px solid var(--border-subtle);
        }

        .lens-surface {
            width: 100%;
            height: auto;
            display: block;
            opacity: 0.85;
            mix-blend-mode: luminosity;
        }

        /* Capability Matrix (Aside) */
        .visor-zone {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--surface-one) 100%);
            border-bottom: 1px solid var(--border-subtle);
        }

        .zone-apex {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .zone-cipher {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 60px;
        }

        .matrix-pod {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .packet-tech {
            background: var(--surface-two);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 32px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .packet-tech:hover {
            border-color: var(--cyan-base);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .packet-tech::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle top right, var(--cyan-dim), transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }

        .packet-tech:hover::after {
            opacity: 1;
        }

        .glyph-cloak {
            width: 48px;
            height: 48px;
            background: var(--cyan-dim);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            border: 1px solid rgba(91, 203, 225, 0.2);
        }

        .glyph-vector {
            width: 24px;
            height: 24px;
            stroke: var(--cyan-base);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .packet-apex {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .packet-cipher {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Network Proof Article */
        .route-cloak {
            padding: 120px 0;
            position: relative;
            border-bottom: 1px solid var(--border-subtle);
        }

        .route-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .route-info {
            flex: 1;
            min-width: 320px;
        }

        .route-visual {
            flex: 1.2;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .node-packet {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: var(--surface-one);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
        }

        .node-packet::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--border-subtle);
            transition: var(--transition);
        }

        .node-packet:hover::before {
            background: var(--cyan-base);
        }

        .node-region {
            font-weight: 600;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .node-status {
            font-family: monospace;
            color: var(--cyan-base);
            font-size: 0.9rem;
            background: var(--cyan-dim);
            padding: 4px 10px;
            border-radius: 4px;
        }

        /* Hub / Integration Zone (Deep Content) */
        .tunnel-hub {
            padding: 120px 0;
            background: var(--surface-one);
        }

        .hub-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
        }

        .hub-band {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .hub-band:nth-child(even) {
            flex-direction: row-reverse;
        }

        .hub-cloak {
            flex: 1;
            min-width: 300px;
        }

        .hub-visual {
            flex: 1;
            min-width: 300px;
            background: var(--bg-deep);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            position: relative;
        }

        .hub-apex {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .hub-cipher {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

        .wire-sync {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--cyan-base);
            font-weight: 600;
            position: relative;
            padding-bottom: 4px;
        }

        .wire-sync::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--cyan-base);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .wire-sync:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Abstract Visuals for Hub */
        .abstract-lock {
            width: 120px;
            height: 120px;
            border: 4px solid var(--border-subtle);
            border-radius: 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .abstract-lock::before {
            content: '';
            position: absolute;
            top: -30px;
            width: 60px;
            height: 60px;
            border: 4px solid var(--border-subtle);
            border-bottom: none;
            border-radius: 30px 30px 0 0;
        }

        .abstract-play {
            width: 0;
            height: 0;
            border-top: 40px solid transparent;
            border-left: 60px solid var(--border-subtle);
            border-bottom: 40px solid transparent;
        }

        .abstract-devices {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }
        .abstract-devices div {
            border: 4px solid var(--border-subtle);
            border-radius: 8px;
        }
        .dev-desk { width: 100px; height: 70px; }
        .dev-mob { width: 40px; height: 80px; }

        /* FAQ Zone */
        .zone-faq {
            padding: 100px 0;
            background: var(--bg-deep);
        }

        .faq-pod {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-peg {
            background: var(--surface-one);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .faq-peg summary {
            padding: 24px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #ffffff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-peg summary::-webkit-details-marker {
            display: none;
        }

        .faq-peg summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--cyan-base);
            font-weight: 400;
            transition: transform 0.3s ease;
        }

        .faq-peg[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-cipher {
            padding: 0 24px 24px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Footer (Heel/Anchor/Crypt) */
        .anchor-crypt {
            background: #000000;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 40px;
            text-align: center;
        }

        .crypt-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .crypt-mesh {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
        }

        .crypt-wire {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .crypt-wire:hover {
            color: var(--cyan-base);
        }

        .crypt-cipher {
            color: #475569;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .apex-giant {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }
            .route-layout {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            .orbit-mesh {
                flex-direction: column;
                height: auto;
                padding: 16px 24px;
                gap: 16px;
            }
            .orbit-pod {
                justify-content: center;
            }
            .portal-veil {
                padding: 140px 0 60px;
            }
            .hub-band, .hub-band:nth-child(even) {
                flex-direction: column;
            }
            .portal-metrics {
                flex-direction: column;
                align-items: center;
            }
        }

.route-crown-zone {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.route-crown-zone,
.route-crown-zone *,
.route-crown-zone *::before,
.route-crown-zone *::after {
    box-sizing: border-box;
}

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

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

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

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

.route-crown-zone a.route-orbit-wire {
    --aisite-shell-nav-padding: 8px 16px;
    --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-zone a.route-orbit-wire,
.route-crown-zone a.route-orbit-wire:hover,
.route-crown-zone a.route-orbit-wire:focus,
.route-crown-zone a.route-orbit-wire:active,
.route-crown-zone a.route-orbit-wire.active,
.route-crown-zone a.route-orbit-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-zone{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #232d3d;
        }

.route-crown-zone .route-orbit-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

.route-crown-zone .route-sigil{
            display: flex;
            align-items: center;
        }

.route-crown-zone .route-sigil img{
            height: 28px;
            width: auto;
            display: block;
        }

.route-crown-zone .route-orbit-pod{
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.route-crown-zone .route-orbit-wire{
            padding: 8px 16px;
            font-size: 0.95rem;
            color: #94a3b8;
            border-radius: 6px;
            transition: all 0.25s ease;
            font-weight: 500;
        }

.route-crown-zone .route-orbit-wire:hover, .route-crown-zone .route-orbit-wire.active{
            color: #5bcbe1;
            background: rgba(91, 203, 225, 0.1);
        }

@media (max-width: 768px){.route-crown-zone .route-orbit-mesh{
                flex-direction: column;
                height: auto;
                padding: 16px 24px;
                gap: 16px;
            }

.route-crown-zone .route-orbit-pod{
                justify-content: center;
            }}

.route-crown-zone {
    background: rgb(5, 8, 15);
    background-image: none;
}

.anchor-anchor-crypt {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.anchor-anchor-crypt,
.anchor-anchor-crypt *,
.anchor-anchor-crypt *::before,
.anchor-anchor-crypt *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-anchor-crypt .anchor-zone-bound{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

.anchor-anchor-crypt{
            background: #000000;
            border-top: 1px solid #232d3d;
            padding: 60px 0 40px;
            text-align: center;
        }

.anchor-anchor-crypt .anchor-crypt-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

.anchor-anchor-crypt .anchor-crypt-mesh{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
        }

.anchor-anchor-crypt .anchor-crypt-wire{
            color: #94a3b8;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }

.anchor-anchor-crypt .anchor-crypt-wire:hover{
            color: #5bcbe1;
        }

.anchor-anchor-crypt .anchor-crypt-cipher{
            color: #475569;
            font-size: 0.85rem;
        }