:root {
            --primary: #5e54ea;
            --accent: #4338ca;
            --bg: #f8fafc;
            --text: #0f172a;
            --text-soft: #475569;
            --radius: 9px;
            --radius-lg: 20px;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --shadow-deep: 0 20px 50px rgba(0,0,0,0.03);
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

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

        body {
            font-family: var(--font);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }

        /* Crown - Navigation Inherited Style */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(248, 250, 252, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pilot {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .sigil img {
            height: 100%;
            width: auto;
        }

        .array {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nexus {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-soft);
            position: relative;
        }

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

        .nexus.active {
            color: var(--primary);
            font-weight: 700;
        }

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

        /* Main Container */
        main {
            padding-top: 72px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Intro Section - Mosaic Collage Theme */
        .glare {
            padding: 5rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 80vh;
        }

        .nest-mosaic {
            position: relative;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(12, 1fr);
            height: 600px;
        }

        .lens-prime {
            grid-column: 1 / 10;
            grid-row: 1 / 11;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            z-index: 2;
        }

        .lens-prime img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .lens-prime:hover img {
            transform: scale(1.03);
        }

        .nest-mosaic::before {
            content: '';
            position: absolute;
            grid-column: 8 / 13;
            grid-row: 7 / 13;
            background: var(--primary);
            border-radius: var(--radius-lg);
            opacity: 0.1;
            z-index: 1;
        }

        .apex-nest {
            max-width: 600px;
        }

        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            color: #1e293b;
            letter-spacing: -0.02em;
            margin-bottom: 2rem;
        }

        .tome-lead {
            font-size: 1.25rem;
            color: var(--text-soft);
            margin-bottom: 3rem;
            word-break: break-word;
        }

        /* Focus Section - Shard/Facet Grid */
        .prism {
            padding: 6rem 2rem;
            background: #fff;
            border-radius: 40px 40px 0 0;
            box-shadow: 0 -20px 40px rgba(0,0,0,0.02);
        }

        .band-apex {
            text-align: center;
            margin-bottom: 5rem;
        }

        .apex-sub {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

        .facet-plate {
            background: var(--bg);
            padding: 3rem;
            border-radius: var(--radius-lg);
            transition: all 0.25s ease;
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .facet-plate:hover {
            transform: translateY(-8px);
            background: #fff;
            box-shadow: var(--shadow);
            border-color: rgba(94, 84, 234, 0.1);
        }

        .glyph-box {
            width: 64px;
            height: 64px;
            background: #fff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            color: var(--primary);
        }

        .apex-entry {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .tome-detail {
            color: var(--text-soft);
            font-size: 1rem;
        }

        /* Pathway Section - Steps */
        .beam {
            padding: 8rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .clump-path {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            position: relative;
        }

        .clump-path::after {
            content: '';
            position: absolute;
            left: 40px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), transparent);
            z-index: -1;
        }

        .entry-step {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
        }

        .glyph-step {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            box-shadow: 0 10px 20px rgba(94, 84, 234, 0.3);
        }

        .tome-path-nest {
            padding-top: 1rem;
        }

        .apex-path {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        /* Capability Section - Context */
        .hull-usage {
            padding: 6rem 2rem;
            background: #1e293b;
            color: #fff;
            border-radius: var(--radius-lg);
            margin: 4rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .hull-usage .apex-sub {
            grid-column: 1 / -1;
            color: #fff;
            text-align: center;
            margin-bottom: 2rem;
        }

        .entry-context {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }

        .ignite-prime {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(94, 84, 234, 0.39);
            margin-top: 2rem;
            cursor: pointer;
        }

        .ignite-prime:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(94, 84, 234, 0.5);
        }

        /* Sole - Footer Style */
        .sole {
            background: #fff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .basis {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .tome-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .clump-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .nexus-foot {
            color: var(--text-soft);
            font-size: 0.95rem;
        }

        .nexus-foot:hover {
            color: var(--primary);
        }

        .tome-tome {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .glare {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            .apex-nest {
                margin: 0 auto;
            }
            .nest-mosaic {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .array {
                display: none; /* Mobile menu logic simplified */
            }
            .glare {
                padding: 3rem 1.5rem;
            }
            .nest-mosaic {
                height: 350px;
            }
            .prism {
                padding: 4rem 1.5rem;
            }
            .entry-step {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
                text-align: center;
            }
            .clump-path::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .hull-usage {
                margin: 2rem 1rem;
                padding: 3rem 1.5rem;
            }
        }

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

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

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

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

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

.axis-crown a.axis-nexus {
    --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;
}

.axis-crown a.axis-nexus,
.axis-crown a.axis-nexus:hover,
.axis-crown a.axis-nexus:focus,
.axis-crown a.axis-nexus:active,
.axis-crown a.axis-nexus.active,
.axis-crown a.axis-nexus[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);
}

.axis-crown{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.axis-crown .axis-pilot{
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

.axis-crown .axis-nexus{
            text-decoration: none;
            color: #0f172a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
            position: relative;
        }

.axis-crown .axis-nexus:hover, .axis-crown .axis-nexus.active{
            color: #5e54ea;
        }

.axis-crown .axis-nexus.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #5e54ea;
        }

@media (max-width: 768px){.axis-crown .axis-pilot{
                flex-direction: column;
                gap: 1.5rem;
            }

.axis-crown .axis-array{
                gap: 1rem;
                justify-content: center;
            }}

.axis-crown {
    background: rgb(255, 255, 255);
    background-image: none;
}

.basis-sole {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text);
}
.basis-sole,
.basis-sole *,
.basis-sole *::before,
.basis-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.basis-sole .basis-apex-small{
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

.basis-sole{
            background: #ffffff;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 5rem 2rem 3rem;
        }

.basis-sole .basis-basis-nest{
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

.basis-sole .basis-tome-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #5e54ea;
            margin-bottom: 1rem;
        }

.basis-sole .basis-array-vertical{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.basis-sole .basis-nexus-foot{
            text-decoration: none;
            color: #64748b;
            font-size: 0.9rem;
            transition: color 0.25s ease;
        }

.basis-sole .basis-nexus-foot:hover{
            color: #5e54ea;
        }

.basis-sole .basis-dregs{
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }