/* Base Variables & Reset */
        :root {
            --bg-core: #08080a;
            --bg-surface: rgba(18, 19, 24, 0.75);
            --text-primary: #ffffff;
            --text-secondary: #a0a0ab;
            --accent: #2b58d6;
            --accent-hover: #3a6bf0;
            --border: rgba(255, 255, 255, 0.08);
            --glow: rgba(43, 88, 214, 0.3);
            --radius-md: 12px;
            --radius-lg: 16px;
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.15s ease;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex safety */
        }

        body {
            font-family: var(--font-base);
            background-color: var(--bg-core);
            color: var(--text-secondary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* Typography */
        .apex-huge {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .apex {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .hum {
            font-size: clamp(1rem, 1.2vw, 1.125rem);
            color: var(--text-secondary);
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        /* Layout Primitives */
        .zone, .shell, .knot, .orbit, .loom {
            display: flex;
            flex-wrap: wrap;
        }

        .cloak {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Header / Nav (Strict Match to Prompt Requirements) */
        .orbit {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 5%;
            justify-content: space-between;
            align-items: center;
            background: rgba(8, 8, 10, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
        }

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

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

        .loom {
            gap: 2rem;
            align-items: center;
        }

        .thread {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .thread:hover, .thread.active {
            color: var(--text-primary);
        }

        .thread.active {
            position: relative;
        }

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

        /* Actions / Buttons */
        .ping, .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.25rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }

        .ping {
            background: var(--accent);
            color: #ffffff;
            border: 1px solid transparent;
            box-shadow: 0 4px 12px rgba(43, 88, 214, 0.4);
        }

        .ping:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(43, 88, 214, 0.6);
        }

        .spark {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .spark:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Display Areas */
        /* Hero Section (Intro) */
        .flare {
            padding: 12rem 0 8rem;
            position: relative;
            flex-direction: column;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        .flare::before {
            content: '';
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 80vw;
            height: 80vw;
            background: radial-gradient(circle, rgba(43, 88, 214, 0.15) 0%, rgba(8, 8, 10, 0) 70%);
            z-index: -1;
            border-radius: 50%;
        }

        .flare .cloak {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            max-width: 800px;
        }

        .flare .hum {
            font-size: clamp(1.125rem, 1.5vw, 1.25rem);
            margin-bottom: 1rem;
        }

        .flare .knot {
            gap: 1rem;
            justify-content: center;
        }

        /* Grid Section (Capability) */
        .beacon {
            padding: 6rem 0;
            flex-direction: column;
        }

        .beacon .cloak {
            flex-direction: column;
            gap: 4rem;
        }

        .beacon-head {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

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

        /* Surface Component Syntax */
        .packet, .blip {
            background: var(--bg-surface);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .packet::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .packet:hover {
            transform: translateY(-8px);
            border-color: rgba(43, 88, 214, 0.4);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .packet:hover::before {
            opacity: 1;
        }

        .mark {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(43, 88, 214, 0.1);
            border-radius: var(--radius-md);
            border: 1px solid rgba(43, 88, 214, 0.2);
            color: var(--accent);
        }
        
        .mark svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .packet .apex {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Article Section (Features) */
        .pulse {
            padding: 8rem 0;
            background: linear-gradient(180deg, var(--bg-core) 0%, rgba(18, 19, 24, 0.4) 100%);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pulse .cloak {
            align-items: center;
            gap: 4rem;
        }

        .pulse-hum {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pulse-lens {
            flex: 1 1 400px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Abstract Visual for Customize */
        .art-node {
            width: 100%;
            aspect-ratio: 4/3;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(0,0,0,0.5);
            position: relative;
        }
        
        .art-crown {
            height: 40px;
            background: rgba(0,0,0,0.4);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            padding: 0 1rem;
            gap: 8px;
        }

        .art-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
        }

        .art-body {
            flex: 1;
            padding: 2rem;
            display: flex;
            gap: 1rem;
        }

        .art-band {
            flex: 1;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            border: 1px dashed rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .art-band::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 40%, rgba(43, 88, 214, 0.2) 50%, transparent 60%);
            background-size: 200% 200%;
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Steps Section (Hive) */
        .hive {
            padding: 8rem 0;
        }

        .hive .cloak {
            flex-direction: column;
            gap: 4rem;
        }

        .hive-head {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .step-knot {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
        }

        .bead {
            display: flex;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.02);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .bead:hover {
            background: var(--bg-surface);
            border-color: var(--border);
            transform: translateX(10px);
        }

        .bead-num {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
        }
        
        .bead:hover .bead-num {
            color: rgba(43, 88, 214, 0.1);
            -webkit-text-stroke: 1px rgba(43, 88, 214, 0.5);
        }

        .bead-hum {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            justify-content: center;
        }

        .bead-hum .apex {
            font-size: 1.25rem;
            margin: 0;
        }

        /* Footer Component */
        .anchor {
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--border);
            background: #050507;
        }

        .anchor .cloak {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .anchor-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .anchor-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .anchor-links a:hover {
            color: var(--text-primary);
        }

        .sole-hum {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.3);
            text-align: center;
            width: 100%;
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .orbit {
                padding: 1rem;
            }
            .loom {
                display: none; /* In a real scenario, this would be a hamburger menu logic via JS, but keeping simple for CSS only fallback */
            }
            .flare {
                padding: 8rem 0 4rem;
            }
            .packet-grid {
                grid-template-columns: 1fr;
            }
            .pulse .cloak {
                flex-direction: column;
            }
            .bead {
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem;
            }
            .bead:hover {
                transform: translateY(-5px);
            }
        }

.nexus-orbit {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
}
.nexus-orbit,
.nexus-orbit *,
.nexus-orbit *::before,
.nexus-orbit *::after {
    box-sizing: border-box;
}

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

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

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

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

.nexus-orbit a.nexus-thread {
    --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;
}

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

.nexus-orbit{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 4%;
            background: rgba(13, 13, 18, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.nexus-orbit .nexus-glyph{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.nexus-orbit .nexus-glyph img{
            height: 28px;
            width: auto;
            display: block;
        }

.nexus-orbit .nexus-loom{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
            min-width: 0;
        }

.nexus-orbit .nexus-thread{
            color: #a0a0a5;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.15s ease;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.nexus-orbit .nexus-thread:hover, .nexus-orbit .nexus-thread.active{
            color: #ffffff;
        }

.nexus-orbit .nexus-thread.active{
            position: relative;
        }

.nexus-orbit .nexus-thread.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #2b58d6;
            border-radius: 2px;
        }

@media (max-width: 768px){.nexus-orbit{
                padding: 1rem 5%;
                justify-content: center;
                gap: 1.5rem;
            }

.nexus-orbit .nexus-loom{
                width: 100%;
                justify-content: center;
                gap: 1.25rem;
            }}

.nexus-orbit {
    background: rgb(13, 13, 18);
    background-image: none;
}

.anchor-sole {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
}
.anchor-sole,
.anchor-sole *,
.anchor-sole *::before,
.anchor-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-sole{
            background: #050507;
            padding: 4rem 5%;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.anchor-sole .anchor-echo-knot{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            width: 100%;
        }

.anchor-sole .anchor-echo-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.02em;
            word-break: break-word;
        }

.anchor-sole .anchor-echo-hum{
            color: #606065;
            font-size: 0.875rem;
            word-break: break-word;
        }

@media (max-width: 768px){.anchor-sole .anchor-echo-knot{
                flex-direction: column;
                text-align: center;
            }}