/* CSS Variables - High Contrast Tech Framework */
        :root {
            --bg: #09090b;
            --surface: #121214;
            --surface-elevated: #1c1c1f;
            --border: #27272a;
            --border-highlight: #3f3f46;
            --primary: #17dfdf;
            --primary-dim: rgba(23, 223, 223, 0.15);
            --text-main: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #000000;
            --radius: 6px;
            --transition: 0.35s ease;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        /* Typography */
        .peak-xl { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; white-space: normal; }
        .peak-lg { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; white-space: normal; }
        .peak-md { font-size: 1.5rem; font-weight: 600; line-height: 1.3; white-space: normal; }
        .peak-sm { font-size: 1.125rem; font-weight: 600; line-height: 1.4; white-space: normal; }
        .lore-lg { font-size: 1.25rem; color: var(--text-muted); line-height: 1.6; }
        .lore-md { font-size: 1rem; color: var(--text-muted); }
        
        .highlight { color: var(--primary); }

        /* Layout Utils */
        .mesh-mesh {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header / Orbit */
        .apex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .orbit > * { min-width: 0; }

        .seal img {
            height: 28px;
            display: block;
        }

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

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

        .tie:hover, .tie.active {
            color: var(--text-main);
        }

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

        /* Hero / Nova (Asymmetric Grid) */
        .nova {
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }

        .nova::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--primary-dim) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .nova .mesh {
            display: grid;
            grid-template-columns: 35% 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .nova-shell {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }

        .ping-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            padding: 0.875rem 2rem;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid var(--primary);
        }

        .ping-primary:hover {
            background-color: transparent;
            color: var(--primary);
            box-shadow: 0 0 20px var(--primary-dim);
        }

        .lens-frame {
            border-radius: 8px;
            border: 1px solid var(--border-highlight);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
            position: relative;
            background: var(--surface);
        }

        .lens-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .lens-frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Features / Capability Zone */
        .zone-capability {
            padding: 8rem 0;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
        }

        .vein-top {
            width: 48px;
            height: 3px;
            background: var(--primary);
            margin-bottom: 2rem;
        }

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

        .node-feature {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .node-feature:hover {
            border-color: var(--border-highlight);
            transform: translateY(-4px);
            background: var(--surface-elevated);
        }

        .rune-shell {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-dim);
            border-radius: var(--radius);
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .rune-shell svg {
            width: 24px;
            height: 24px;
        }

        /* Detail Article / Value Prop */
        .zone-detail {
            padding: 8rem 0;
            background: radial-gradient(ellipse at center, var(--surface) 0%, var(--bg) 100%);
            border-bottom: 1px solid var(--border);
        }

        .pod-stack {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            margin-top: 4rem;
        }

        .packet-split {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .packet-split > * {
            flex: 1 1 400px;
            min-width: 0;
        }

        .shell-data {
            background: var(--surface-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            font-family: monospace;
            font-size: 0.9rem;
            color: var(--primary);
        }

        .shell-data div {
            margin-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-highlight);
            padding-bottom: 0.5rem;
        }
        .shell-data div:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        /* Pathway Aside */
        .zone-pathway {
            padding: 8rem 0;
            background: var(--bg);
        }

        .pod-masonry {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .bead-path {
            display: flex;
            flex-direction: column;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
            transition: var(--transition);
            height: 100%;
        }

        .bead-path:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }

        .spark-tie {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            margin-top: auto;
            padding-top: 1.5rem;
            transition: var(--transition);
        }

        .spark-tie svg {
            width: 16px;
            height: 16px;
            transition: transform var(--transition);
        }

        .bead-path:hover .spark-tie {
            color: var(--primary);
        }

        .bead-path:hover .spark-tie svg {
            transform: translateX(4px);
        }

        .bead-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .bead-meta > * { min-width: 0; }
        
        .meta-tag {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            background: var(--surface-elevated);
            border: 1px solid var(--border-highlight);
            border-radius: 4px;
            color: var(--text-muted);
        }

        /* Footer / Wake */
        .wake {
            border-top: 1px solid var(--border);
            background: var(--surface);
            padding: 4rem 0 2rem;
        }

        .root {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
        }
        .root > * { min-width: 0; }

        .root-brand {
            flex: 1 1 300px;
        }

        .brand-lore {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.05em;
            margin-bottom: 1rem;
        }

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

        .tie-pod {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .tie-peak {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-main);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .echo-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nova .mesh {
                grid-template-columns: 1fr;
            }
            .nova-shell {
                order: 2;
                align-items: center;
                text-align: center;
            }
            .lens-frame {
                order: 1;
            }
            .wire {
                display: none; /* In a real app, this would be a hamburger menu */
            }
        }

        @media (max-width: 768px) {
            .peak-xl { font-size: 2.5rem; }
            .nova { padding: 4rem 0; }
            .zone-capability, .zone-detail, .zone-pathway { padding: 4rem 0; }
            .packet-split { flex-direction: column; }
            .pod-masonry { grid-template-columns: 1fr; }
        }

.orbit-apex {
    font-family: ui-sans-serif, 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);
}
.orbit-apex,
.orbit-apex *,
.orbit-apex *::before,
.orbit-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-apex a.orbit-tie {
    --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;
}

.orbit-apex a.orbit-tie,
.orbit-apex a.orbit-tie:hover,
.orbit-apex a.orbit-tie:focus,
.orbit-apex a.orbit-tie:active,
.orbit-apex a.orbit-tie.active,
.orbit-apex a.orbit-tie[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);
}

.orbit-apex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid #27272a;
        }

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

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

.orbit-apex .orbit-seal img{
            height: 28px;
            display: block;
        }

.orbit-apex .orbit-wire{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

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

.orbit-apex .orbit-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.orbit-apex .orbit-tie:hover, .orbit-apex .orbit-tie.active{
            color: #f4f4f5;
        }

.orbit-apex .orbit-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

@media (max-width: 1024px){.orbit-apex .orbit-wire{
                display: none; 
            }}

.orbit-apex {
    background: rgb(9, 9, 11);
    background-image: none;
}

.root-wake {
    font-family: ui-sans-serif, 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);
}
.root-wake,
.root-wake *,
.root-wake *::before,
.root-wake *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.root-wake .root-lore-md{ font-size: 1rem; color: #a1a1aa; }

.root-wake .root-mesh-mesh{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-wake .root-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.root-wake .root-tie:hover, .root-wake .root-tie.active{
            color: #f4f4f5;
        }

.root-wake .root-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

.root-wake{
            border-top: 1px solid #27272a;
            background: #121214;
            padding: 4rem 0 2rem;
        }

.root-wake .root-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
        }

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

.root-wake .root-root-brand{
            flex: 1 1 300px;
        }

.root-wake .root-brand-lore{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f4f4f5;
            letter-spacing: -0.05em;
            margin-bottom: 1rem;
        }

.root-wake .root-root-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

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

.root-wake .root-tie-pod{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.root-wake .root-tie-peak{
            font-size: 0.875rem;
            font-weight: 600;
            color: #f4f4f5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.root-wake .root-echo-bottom{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #27272a;
            text-align: center;
            color: #a1a1aa;
            font-size: 0.875rem;
        }