:root {
            --primary: #4a2bc9;
            --accent: #7c5dfa;
            --bg: #050508;
            --surface: #0f0f16;
            --text: #e2e2e8;
            --text-dim: #a1a1b0;
            --radius: 16px;
            --transition: 0.35s ease;
        }

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

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.7;
            word-break: break-word;
            overflow-x: hidden;
        }

        /* Orbit/Steer (Navigation) */
        .band {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 5, 8, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

        .vibe img {
            height: 32px;
            width: auto;
        }

        .trio {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .echo {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

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

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

        /* Prime/Glare (Hero) */
        .field.front {
            padding: 10rem 2rem 6rem;
            text-align: center;
            background: radial-gradient(circle at top center, rgba(74, 43, 201, 0.15) 0%, transparent 70%);
        }

        .prime-atom {
            max-width: 1000px;
            margin: 0 auto;
        }

        .prime-glif {
            font-size: clamp(3rem, 8vw, 6.5rem);
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 2rem;
            background: linear-gradient(180deg, #fff 0%, #a1a1b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .prime-word {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-dim);
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .fold {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .spark {
            background: var(--primary);
            color: white;
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(74, 43, 201, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .spark:hover {
            transform: translateY(-3px);
            background: var(--accent);
            box-shadow: 0 15px 40px rgba(74, 43, 201, 0.4);
        }

        .pulse {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pulse:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Realm (Capability Grid) */
        .realm {
            max-width: 1300px;
            margin: 4rem auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .shard {
            background: var(--surface);
            padding: 3rem 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        .shard:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            background: rgba(15, 15, 22, 0.8);
        }

        .conn {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 8px 20px rgba(74, 43, 201, 0.2);
        }

        .shard-glif {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .shard-word {
            color: var(--text-dim);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Bound (Proof / Split) */
        .bound {
            max-width: 1300px;
            margin: 6rem auto;
            padding: 4rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .bound-atom {
            flex: 1;
            min-width: 320px;
        }

        .bound-glif {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .bound-word {
            font-size: 1.1rem;
            color: var(--text-dim);
            margin-bottom: 2rem;
        }

        .bound-nadir {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .bound-nadir img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Acquire (Content Teaser) */
        .atom.acquire {
            max-width: 1100px;
            margin: 6rem auto;
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(74, 43, 201, 0.1) 0%, rgba(15, 15, 22, 1) 100%);
            border-radius: 24px;
            border: 1px solid rgba(74, 43, 201, 0.2);
            text-align: center;
        }

        .acquire-nadir {
            max-width: 800px;
            margin: 3rem auto 0;
            display: block;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .acquire-nadir img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Comparison (News Editorial) */
        .field.comparison {
            max-width: 1300px;
            margin: 6rem auto;
            padding: 4rem 2rem;
        }

        .husk {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
        }

        .apex {
            flex: 1;
            min-width: 300px;
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .apex:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .apex-nadir {
            height: 200px;
            overflow: hidden;
        }

        .apex-nadir img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .apex:hover .apex-nadir img {
            transform: scale(1.05);
        }

        .apex-atom {
            padding: 2rem;
        }

        .apex-glif {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .apex-word {
            font-size: 0.9rem;
            color: var(--text-dim);
            margin-bottom: 1.5rem;
        }

        .apex-mark {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary);
            font-weight: 700;
        }

        /* Anchor (Footer) */
        .mark {
            background: #020205;
            padding: 6rem 2rem 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .anchor-realm {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

        .anchor-atom {
            flex: 1;
            min-width: 250px;
        }

        .anchor-vibe {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .anchor-word {
            color: var(--text-dim);
            font-size: 0.95rem;
            max-width: 300px;
        }

        .anchor-fold {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

        .anchor-husk {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .anchor-glif {
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .anchor-echo {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

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

        .base-mark {
            max-width: 1300px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: rgba(255, 255, 255, 0.2);
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .orbit { padding: 1rem; }
            .trio { gap: 1rem; justify-content: center; width: 100%; margin-top: 1rem; }
            .field.front { padding: 8rem 1.5rem 4rem; }
            .prime-glif { font-size: 3.2rem; }
            .bound-glif { font-size: 2.2rem; }
            .bound { gap: 2rem; padding: 2rem 1.5rem; }
            .shard { padding: 2rem 1.5rem; }
        }

.orbit-band {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.orbit-band,
.orbit-band *,
.orbit-band *::before,
.orbit-band *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-band a.orbit-echo {
    --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;
}

.orbit-band a.orbit-echo,
.orbit-band a.orbit-echo:hover,
.orbit-band a.orbit-echo:focus,
.orbit-band a.orbit-echo:active,
.orbit-band a.orbit-echo.active,
.orbit-band a.orbit-echo[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-band{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 5, 8, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.orbit-band .orbit-orbit{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.orbit-band .orbit-vibe{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.orbit-band .orbit-vibe img{
            height: 32px;
            width: auto;
        }

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

.orbit-band .orbit-echo{
            color: #a1a1b0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            position: relative;
        }

.orbit-band .orbit-echo:hover, .orbit-band .orbit-echo.active{
            color: #e2e2e8;
        }

.orbit-band .orbit-echo.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4a2bc9;
            border-radius: 2px;
        }

@media (max-width: 768px){.orbit-band .orbit-orbit{ padding: 1rem; }

.orbit-band .orbit-trio{ gap: 1rem; justify-content: center; width: 100%; margin-top: 1rem; }}

.orbit-band {
    background: rgb(5, 5, 8);
    background-image: none;
}

.base-mark-2 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.base-mark-2,
.base-mark-2 *,
.base-mark-2 *::before,
.base-mark-2 *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-mark-2{
            background: #020205;
            padding: 6rem 2rem 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.base-mark-2 .base-anchor-realm{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

.base-mark-2 .base-anchor-atom{
            flex: 1;
            min-width: 250px;
        }

.base-mark-2 .base-anchor-vibe{
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

.base-mark-2 .base-anchor-word{
            color: #a1a1b0;
            font-size: 0.95rem;
            max-width: 300px;
        }

.base-mark-2 .base-anchor-fold{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.base-mark-2 .base-anchor-husk{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.base-mark-2 .base-anchor-glif{
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }

.base-mark-2 .base-anchor-echo{
            color: #a1a1b0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.35s ease;
        }

.base-mark-2 .base-anchor-echo:hover{
            color: #4a2bc9;
        }

.base-mark-2 .base-base-mark{
            max-width: 1300px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: rgba(255, 255, 255, 0.2);
            font-size: 0.8rem;
        }