/* Base Variables & Reset */
        :root {
            --aura-primary: #df72aa;
            --aura-primary-hover: #c95a92;
            --aura-primary-light: #fce4ec;
            --aura-bg: #fcfcfd;
            --aura-surface: #ffffff;
            --aura-text-main: #1d1d1f;
            --aura-text-muted: #86868b;
            --aura-border: rgba(0, 0, 0, 0.08);
            --aura-radius: 14px;
            --aura-radius-lg: 24px;
            --aura-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            --aura-shadow-hover: 0 12px 32px rgba(223, 114, 170, 0.15);
            --aura-transition: all 0.25s ease;
            --aura-spacing-base: 1.5rem;
            --aura-max-width: 1280px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--aura-bg);
            color: var(--aura-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            white-space: normal;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--aura-text-main);
        }

        p {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
            color: var(--aura-text-muted);
            font-size: 1.125rem;
        }

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

        /* Banner & Navigation (apex) */
        .apex {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--aura-border);
        }

        .radar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: var(--aura-max-width);
            margin: 0 auto;
            padding: 1rem 2rem;
            min-width: 0;
        }

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

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

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

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

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

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

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

        /* Main Structural Rules */
        main {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding-top: 70px; /* Offset for fixed banner */
        }

        /* Hero (portal) - fullbleed_overlay prototype */
        .portal {
            position: relative;
            width: 100%;
            min-height: 92vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            /* Creating a high-end mesh gradient background using CSS since no image is provided for Hero */
            background: radial-gradient(circle at 15% 50%, rgba(223, 114, 170, 0.15), transparent 50%),
                        radial-gradient(circle at 85% 30%, rgba(223, 114, 170, 0.08), transparent 50%),
                        linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            overflow: hidden;
            text-align: center;
        }

        .veil {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.7) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .portal > div {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 0;
            transform: translateY(0);
        }

        .portal .crest {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1d1d1f 0%, #434343 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .portal .cipher {
            font-size: clamp(1.125rem, 2vw, 1.35rem);
            max-width: 700px;
            margin: 0 auto 3rem;
            color: #495057;
        }

        /* Buttons (warp) */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            background-color: var(--aura-primary);
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(223, 114, 170, 0.3);
            transition: var(--aura-transition);
            min-width: 0;
            border: 2px solid transparent;
        }

        .warp:hover {
            background-color: var(--aura-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(223, 114, 170, 0.4);
        }

        .warp-outline {
            background-color: transparent;
            color: var(--aura-text-main);
            border: 2px solid var(--aura-border);
            box-shadow: none;
        }

        .warp-outline:hover {
            border-color: var(--aura-primary);
            color: var(--aura-primary);
            background-color: transparent;
            box-shadow: none;
            transform: translateY(-2px);
        }

        /* Generic Section Styling */
        .armor, .mesh, .tunnel, .nexus {
            padding: 8rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .armor {
            background-color: var(--aura-surface);
        }

        .mesh {
            background-color: var(--aura-bg);
        }

        .tunnel {
            background-color: var(--aura-primary-light);
            padding: 6rem 2rem;
        }

        .nexus {
            background: linear-gradient(135deg, #1d1d1f 0%, #323233 100%);
            color: #ffffff;
            text-align: center;
        }

        .pool {
            max-width: var(--aura-max-width);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            min-width: 0;
        }

        .crest-lg {
            font-size: clamp(2rem, 3.5vw, 3rem);
            margin-bottom: 4rem;
            width: 100%;
            text-align: center;
        }

        .nexus .crest-lg {
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        /* Features Cards (vault) */
        .vault {
            flex: 1 1 300px;
            background: var(--aura-surface);
            padding: 3rem 2rem;
            border-radius: var(--aura-radius-lg);
            border: 1px solid var(--aura-border);
            box-shadow: var(--aura-shadow);
            transition: var(--aura-transition);
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--aura-shadow-hover);
            border-color: rgba(223, 114, 170, 0.3);
        }

        .glyph {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--aura-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--aura-primary);
        }

        .glyph svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.5;
        }

        .vault .crest {
            font-size: 1.35rem;
            margin-bottom: 1rem;
        }

        .vault .cipher {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Feature Detail Layout (mesh -> aside) */
        .mesh .pool {
            align-items: center;
            gap: 5rem;
        }

        .mesh .step {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .mesh .crest-lg {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .mesh .cipher {
            margin-bottom: 1.5rem;
        }

        .lens {
            width: 100%;
            border-radius: var(--aura-radius-lg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            display: block;
            border: 1px solid var(--aura-border);
        }

        /* Editorial Rail / Pods (tunnel) */
        .tunnel .crest-lg {
            margin-bottom: 3rem;
        }

        .pod {
            flex: 1 1 280px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: var(--aura-radius);
            min-width: 0;
            transition: var(--aura-transition);
            border: 1px solid rgba(255,255,255,0.8);
        }

        .pod:hover {
            background: var(--aura-surface);
            transform: translateY(-3px);
            box-shadow: var(--aura-shadow);
        }

        .pod .crest {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .pod .crest svg {
            width: 20px;
            height: 20px;
            color: var(--aura-primary);
            transition: var(--aura-transition);
        }

        .pod:hover .crest svg {
            transform: translateX(4px);
        }

        .pod .cipher {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Footer (root) */
        .root {
            background-color: var(--aura-surface);
            padding: 4rem 2rem;
            border-top: 1px solid var(--aura-border);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .crypt {
            max-width: var(--aura-max-width);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

        .anchor {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--aura-text-main);
            letter-spacing: -0.02em;
        }

        .root .cipher {
            font-size: 0.875rem;
            margin: 0;
        }

        .root .path {
            gap: 1.5rem;
        }

        .root .wire {
            font-size: 0.875rem;
            color: var(--aura-text-muted);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .mesh .pool {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .radar {
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }
            .path {
                justify-content: center;
                gap: 1rem;
            }
            .armor, .mesh, .tunnel, .nexus {
                padding: 4rem 1.5rem;
            }
            .vault, .mesh .step, .pod {
                flex: 1 1 100%;
            }
            .crypt {
                flex-direction: column;
                text-align: center;
            }
        }

.route-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--aura-text-main);
}
.route-apex,
.route-apex *,
.route-apex *::before,
.route-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.route-apex a.route-wire {
    --aisite-shell-nav-padding: 0.5rem 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-apex a.route-wire,
.route-apex a.route-wire:hover,
.route-apex a.route-wire:focus,
.route-apex a.route-wire:active,
.route-apex a.route-wire.active,
.route-apex 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-apex{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

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

.route-apex .route-sigil{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-sigil img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-apex .route-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.route-apex .route-wire:hover{
            color: #df72aa;
        }

.route-apex .route-wire.active{
            color: #df72aa;
        }

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

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

.route-apex .route-path{
                justify-content: center;
                gap: 1rem;
            }}

.route-apex {
    background: rgb(255, 255, 255);
    background-image: none;
}

.crypt-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--aura-text-main);
}
.crypt-root,
.crypt-root *,
.crypt-root *::before,
.crypt-root *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.crypt-root .crypt-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.crypt-root .crypt-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.crypt-root .crypt-wire:hover{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #df72aa;
            border-radius: 2px;
        }

.crypt-root{
            background-color: #ffffff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

.crypt-root .crypt-crypt{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.crypt-root .crypt-anchor{
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            letter-spacing: -0.02em;
        }

.crypt-root .crypt-cipher{
            font-size: 0.875rem;
            margin: 0;
        }

.crypt-root .crypt-path{
            gap: 1.5rem;
        }

.crypt-root .crypt-wire{
            font-size: 0.875rem;
            color: #86868b;
        }

@media (max-width: 768px){.crypt-root .crypt-path{
                justify-content: center;
                gap: 1rem;
            }

.crypt-root .crypt-crypt{
                flex-direction: column;
                text-align: center;
            }}