:root {
            --bg-core: #0a0b10;
            --bg-surface: #12141d;
            --bg-elevated: #1a1d27;
            --accent: #e8a514;
            --accent-hover: #ffc13b;
            --accent-dim: rgba(232, 165, 20, 0.15);
            --radius-sm: 7px;
            --radius-md: 11px;
            --radius-lg: 13px;
            --tunnel-width: 1280px;
            --transition: all 0.25s ease;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-core);
            color: #f3f4f6;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography & Utilities */
        .tunnel-core {
            max-width: var(--tunnel-width);
            margin: 0 auto;
            padding: 0 5vw;
        }

        .topic-prime {
            font-weight: 700;
            font-size: clamp(2.5rem, 4vw, 4rem);
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 1.5rem;
        }
        
        .topic-prime span {
            color: var(--accent);
        }

        .topic-secondary {
            font-weight: 700;
            font-size: clamp(2rem, 3vw, 2.5rem);
            line-height: 1.2;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 1rem;
        }

        .topic-tertiary {
            font-weight: 600;
            font-size: 1.25rem;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 0.75rem;
        }

        .cipher-body {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
            color: #9ca3af;
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }

        .pulse-dial {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            color: #000000;
            font-weight: 700;
            padding: 0 40px;
            height: 56px;
            border-radius: var(--radius-md);
            text-decoration: none;
            box-shadow: 0 4px 20px var(--accent-dim);
            transition: var(--transition);
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .pulse-dial:hover,
        .pulse-dial:focus {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232, 165, 20, 0.3);
            outline: none;
        }

        .pulse-dial-ghost {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: none;
        }

        .pulse-dial-ghost:hover,
        .pulse-dial-ghost:focus {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: none;
            color: #ffffff;
        }

        .lens-frame {
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: var(--bg-elevated);
            padding: 2.5rem;
            transition: var(--transition);
        }

        .lens-frame:hover {
            border-color: var(--accent-dim);
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.6);
        }

        /* Flexbox core rules */
        .flex-batch {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .flex-batch > * {
            min-width: 0;
        }

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

        .route-radar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: var(--tunnel-width);
            margin: 0 auto;
            padding: 1rem 5vw;
            min-height: 80px;
        }
        
        .route-radar > * {
            min-width: 0;
        }

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

        .sigil img {
            height: 32px;
            width: auto;
            object-fit: contain;
        }

        .route-array {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        
        .route-array > * {
            min-width: 0;
        }

        .route-wire {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .route-wire:hover,
        .route-wire:focus,
        .route-wire.active {
            color: #ffffff;
            outline: none;
        }

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

        @media (max-width: 900px) {
            .route-array {
                display: none; /* Simplification for mobile nav in this context */
            }
        }

        /* ---------------- Hero Section (Intro) ---------------- */
        .portal-apex {
            position: relative;
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: var(--bg-core);
            overflow: hidden;
            padding: 6rem 0;
        }
        
        .portal-apex > * {
            min-width: 0;
        }

        /* Creative Seed: split_diagonal */
        .veil-diagonal {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(145deg, var(--bg-core) 50%, var(--bg-surface) 50%);
            z-index: 0;
        }
        
        .veil-diagonal::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(90deg, transparent 49.9%, var(--accent) 49.9%, var(--accent) 50.1%, transparent 50.1%);
            transform: rotate(35deg);
            opacity: 0.3;
            pointer-events: none;
        }

        .portal-apex .tunnel-core {
            position: relative;
            z-index: 1;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .portal-apex .tunnel-core > * {
            min-width: 0;
        }

        .apex-cipher {
            flex: 1 1 500px;
        }

        .apex-visual {
            flex: 1 1 400px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .apex-visual > * {
            min-width: 0;
        }

        /* Abstract Geometric Player */
        .glyph-player {
            width: 100%;
            max-width: 480px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
        }

        .batch-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        
        .batch-actions > * {
            min-width: 0;
        }

        /* ---------------- Platforms Section (Capability) ---------------- */
        .batch-platforms {
            background-color: var(--bg-surface);
            padding: 8rem 0;
            position: relative;
            border-top: 1px solid rgba(255,255,255,0.02);
        }

        .batch-platforms .topic-secondary {
            text-align: center;
            margin-bottom: 4rem;
        }

        .array-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .node-platform {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: flex-start;
        }

        .node-platform > * {
            min-width: 0;
        }

        .node-glyph {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: rgba(255,255,255,0.03);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
            color: var(--accent);
        }
        
        .node-glyph > * {
            min-width: 0;
        }

        .node-platform:hover .node-glyph {
            background: var(--accent-dim);
            border-color: var(--accent);
        }

        /* ---------------- Tech Section (Detail - aside) ---------------- */
        .vault-tech {
            background-color: var(--bg-core);
            padding: 8rem 0;
            position: relative;
        }

        .tech-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(26, 29, 39, 0.4) 100%);
            border-radius: var(--radius-lg);
            padding: 4rem;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .tech-layout > * {
            min-width: 0;
        }

        .tech-cipher {
            flex: 1 1 400px;
        }

        .tech-array {
            flex: 1 1 400px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .tech-array > * {
            min-width: 0;
        }

        .hop-feature {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: rgba(0,0,0,0.2);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }

        .hop-feature > * {
            min-width: 0;
        }

        .hop-feature:hover {
            background: rgba(232, 165, 20, 0.05);
            transform: translateX(5px);
        }

        .hop-glyph {
            margin-right: 1.25rem;
            color: var(--accent);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .hop-glyph > * {
            min-width: 0;
        }

        .hop-cipher {
            font-weight: 600;
            color: #ffffff;
            font-size: 1.1rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* ---------------- Guide Section (FAQ) ---------------- */
        .veil-guide {
            background-color: var(--bg-surface);
            padding: 8rem 0;
        }

        .veil-guide .topic-secondary {
            text-align: center;
            margin-bottom: 1rem;
        }

        .veil-guide .cipher-body.center {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .guide-band {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        
        .guide-band > * {
            min-width: 0;
        }

        .packet-step {
            flex: 1 1 300px;
            max-width: 400px;
            background: var(--bg-core);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.03);
            position: relative;
            transition: var(--transition);
        }

        .packet-step:hover {
            border-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }

        .step-digit {
            position: absolute;
            top: -15px;
            left: 2.5rem;
            width: 30px;
            height: 30px;
            background: var(--accent);
            color: #000;
            border-radius: 50%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(232, 165, 20, 0.3);
        }
        
        .step-digit > * {
            min-width: 0;
        }

        /* ---------------- Footer ---------------- */
        .anchor-trail {
            background-color: #050508;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .root-layout {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .root-layout > * {
            min-width: 0;
        }

        .root-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .root-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .root-links > * {
            min-width: 0;
        }

        .root-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .root-links a:hover,
        .root-links a:focus {
            color: var(--accent);
            outline: none;
        }

        .root-cipher {
            width: 100%;
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .tech-layout {
                padding: 3rem;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .portal-apex {
                padding: 4rem 0;
                min-height: auto;
            }
            .tech-layout {
                flex-direction: column;
                padding: 2rem;
            }
            .root-layout {
                flex-direction: column;
                text-align: center;
            }
            .root-links {
                justify-content: center;
            }
            .batch-actions {
                justify-content: center;
            }
            .apex-cipher {
                text-align: center;
            }
        }

.route-crown-veil {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--cipher-prime);
}
.route-crown-veil,
.route-crown-veil *,
.route-crown-veil *::before,
.route-crown-veil *::after {
    box-sizing: border-box;
}

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

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

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

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

.route-crown-veil a.route-route-wire {
    --aisite-shell-nav-padding: 8px 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-veil a.route-route-wire,
.route-crown-veil a.route-route-wire:hover,
.route-crown-veil a.route-route-wire:focus,
.route-crown-veil a.route-route-wire:active,
.route-crown-veil a.route-route-wire.active,
.route-crown-veil a.route-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-veil{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

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

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

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

.route-crown-veil .route-sigil img{
            height: 32px;
            width: auto;
        }

.route-crown-veil .route-route-array{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

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

.route-crown-veil .route-route-wire{
            font-size: 0.95rem;
            color: #9ca3af;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }

.route-crown-veil .route-route-wire:hover{
            color: #f3f4f6;
        }

.route-crown-veil .route-route-wire.active{
            color: #e8a514;
        }

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

.route-crown-veil .route-pulse-dial{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #e8a514;
            color: #000;
            font-weight: 700;
            font-size: 1.125rem;
            padding: 0 40px;
            height: 56px;
            border-radius: 11px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 20px rgba(232, 165, 20, 0.2);
            align-self: flex-start;
        }

.route-crown-veil .route-pulse-dial:hover{
            background-color: #ffc13b;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(232, 165, 20, 0.3);
        }

@media (max-width: 768px){.route-crown-veil .route-route-array{
                display: none; 
            }}

.route-crown-veil {
    background: rgb(10, 11, 16);
    background-image: none;
}

.anchor-trail-base {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--cipher-prime);
}
.anchor-trail-base,
.anchor-trail-base *,
.anchor-trail-base *::before,
.anchor-trail-base *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-trail-base .anchor-tunnel-core{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
            width: 100%;
        }

.anchor-trail-base{
            background: #12141d;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px;
        }

.anchor-trail-base .anchor-trail-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

.anchor-trail-base .anchor-trail-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f3f4f6;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

.anchor-trail-base .anchor-trail-cipher{
            color: #9ca3af;
            max-width: 400px;
        }

.anchor-trail-base .anchor-trail-topic{
            font-size: 1rem;
            color: #f3f4f6;
            margin-bottom: 24px;
        }

.anchor-trail-base .anchor-trail-batch{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.anchor-trail-base .anchor-trail-wire{
            color: #9ca3af;
            font-size: 0.95rem;
        }

.anchor-trail-base .anchor-trail-wire:hover{
            color: #e8a514;
        }

.anchor-trail-base .anchor-trail-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }

.anchor-trail-base .anchor-trail-bottom > *{
            min-width: 0;
        }

@media (max-width: 1024px){.anchor-trail-base .anchor-trail-grid{
                grid-template-columns: 1fr 1fr;
            }}

@media (max-width: 768px){.anchor-trail-base .anchor-trail-grid{
                grid-template-columns: 1fr;
                gap: 40px;
            }}