:root {
            --brand-primary: #8264f2;
            --brand-primary-hover: #6a4bd8;
            --brand-secondary: #00d2ff;
            --bg-page: #f8f9fe;
            --bg-surface: #ffffff;
            --text-main: #1a1528;
            --text-muted: #6b6280;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 8px;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
            --shadow-float: 0 20px 40px rgba(130, 100, 242, 0.1);
            --transition-base: all 0.25s ease;
        }

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

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

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

        /* Mandatory Header Reuse Styles */
        .apex-zone {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(130, 100, 242, 0.1);
        }
        .sync-mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .crest {
            display: flex;
            align-items: center;
        }
        .crest img {
            height: 32px;
            width: auto;
        }
        .sync-array {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .xwave-bond {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            position: relative;
        }
        .xwave-bond:hover {
            color: var(--brand-primary);
        }
        .xwave-bond.active {
            color: var(--brand-primary);
            font-weight: 600;
        }
        .xwave-bond.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand-primary);
            border-radius: 2px;
        }
        @media (max-width: 768px) {
            .sync-mesh {
                flex-direction: column;
                gap: 16px;
            }
            .sync-array {
                gap: 16px;
                justify-content: center;
            }
        }

        /* Main Structural Zones */
        .realm-primary {
            min-height: calc(100vh - 200px);
        }

        /* Hero: Vertical Stack Variant */
        .shout-realm {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, var(--bg-page) 0%, #ece9ff 100%);
            padding: 100px 24px 60px;
            position: relative;
        }
        .shout-cluster {
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            z-index: 2;
        }
        .flare-peak {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #110d1a;
            white-space: normal;
        }
        .shout-yarn {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--text-muted);
            max-width: 600px;
            word-break: keep-all;
        }
        .spark-emit {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: var(--brand-primary);
            color: #fff;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 100px;
            box-shadow: 0 8px 24px rgba(130, 100, 242, 0.4);
            border: none;
            cursor: pointer;
            margin-top: 16px;
        }
        .spark-emit:hover {
            background: var(--brand-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(130, 100, 242, 0.5);
        }
        .spark-emit-alt {
            background: var(--bg-surface);
            color: var(--text-main);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(130, 100, 242, 0.1);
        }
        .spark-emit-alt:hover {
            background: var(--bg-page);
            color: var(--brand-primary);
            box-shadow: var(--shadow-float);
        }
        .lens-shell {
            margin-top: 60px;
            width: 100%;
            max-width: 1000px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.5);
            transform: translateY(0);
            transition: var(--transition-base);
        }
        .lens-shell:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 80px rgba(130, 100, 242, 0.15);
        }
        .lens-shell img {
            width: 100%;
            height: auto;
            display: block;
        }
        .trust-band {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #10b981;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 16px;
            background: rgba(16, 185, 129, 0.1);
            padding: 6px 16px;
            border-radius: 100px;
        }

        /* Download Grid Zone */
        .pulse-zone {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .zone-peak {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            color: var(--text-main);
        }
        .media-band {
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            max-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }
        .media-band img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: var(--transition-base);
        }
        .media-band:hover img {
            opacity: 1;
            transform: scale(1.02);
        }
        .matrix-mesh {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            width: 100%;
        }
        .packet-shell {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(130, 100, 242, 0.05);
            display: flex;
            flex-direction: column;
            min-width: 0;
            transition: var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        .packet-shell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
            opacity: 0;
            transition: var(--transition-base);
        }
        .packet-shell:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-float);
            border-color: rgba(130, 100, 242, 0.2);
        }
        .packet-shell:hover::before {
            opacity: 1;
        }
        .glyph-cluster {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, rgba(130,100,242,0.1), rgba(0,210,255,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--brand-primary);
        }
        .packet-peak {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .packet-yarn {
            color: var(--text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }
        .code-shell {
            background: #110d1a;
            color: #a599b5;
            padding: 16px;
            border-radius: var(--radius-sm);
            font-family: monospace;
            font-size: 0.875rem;
            margin-bottom: 24px;
            border-left: 4px solid var(--brand-primary);
            overflow-x: auto;
            white-space: pre;
        }
        .nudge-band {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: auto;
        }

        /* Requirements Zone (Aside) */
        .flare-mesh {
            background: #1a1528; /* Cold dark tone for contrast */
            color: #ffffff;
            padding: 80px 24px;
            display: flex;
            justify-content: center;
        }
        .data-cluster {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .data-peak {
            font-size: clamp(1.75rem, 2.5vw, 2.25rem);
            font-weight: 700;
            color: #ffffff;
            text-align: center;
        }
        .data-array {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            background: rgba(255,255,255,0.03);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 32px;
        }
        .data-speck {
            flex: 1;
            min-width: 240px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
            border-left: 2px solid rgba(130, 100, 242, 0.4);
        }
        .speck-peak {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #a599b5;
        }
        .speck-yarn {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--brand-secondary);
        }

        /* Footer */
        .base-root {
            background: var(--bg-surface);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 60px 24px 40px;
        }
        .base-mesh {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }
        .base-crest {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.02em;
        }
        .base-array {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .base-bond {
            color: var(--text-muted);
            font-size: 0.9375rem;
        }
        .base-bond:hover {
            color: var(--brand-primary);
        }
        .base-echo {
            color: #999;
            font-size: 0.875rem;
            text-align: center;
            margin-top: 24px;
        }

        @media (max-width: 768px) {
            .shout-realm {
                padding: 60px 16px 40px;
            }
            .pulse-zone {
                padding: 40px 16px;
            }
            .flare-mesh {
                padding: 60px 16px;
            }
            .packet-shell {
                padding: 24px;
            }
            .nudge-band {
                flex-direction: column;
            }
            .spark-emit {
                width: 100%;
                justify-content: center;
            }
        }

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

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

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

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

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

.sync-apex-zone a.sync-xwave-bond {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.sync-apex-zone a.sync-xwave-bond,
.sync-apex-zone a.sync-xwave-bond:hover,
.sync-apex-zone a.sync-xwave-bond:focus,
.sync-apex-zone a.sync-xwave-bond:active,
.sync-apex-zone a.sync-xwave-bond.active,
.sync-apex-zone a.sync-xwave-bond[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);
}

.sync-apex-zone{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(130, 100, 242, 0.1);
        }

.sync-apex-zone .sync-sync-mesh{
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.sync-apex-zone .sync-crest{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.sync-apex-zone .sync-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.sync-apex-zone .sync-sync-array{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

.sync-apex-zone .sync-xwave-bond{
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #6b6280;
            border-radius: 8px;
            transition: all 0.25s ease;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.sync-apex-zone .sync-xwave-bond:hover, .sync-apex-zone .sync-xwave-bond.active{
            color: #8264f2;
            background: rgba(130, 100, 242, 0.08);
        }

@media (max-width: 768px){.sync-apex-zone .sync-sync-array{
                display: none; 
            }}

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

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

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

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

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

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

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

.base-base-root{
            background: #110d1a;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

.base-base-root .base-base-mesh{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            min-width: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

.base-base-root .base-anchor-cluster{
            flex: 1;
            min-width: 240px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
        }

.base-base-root .base-anchor-peak{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-base-root .base-anchor-yarn{
            line-height: 1.8;
            margin-bottom: 24px;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

.base-base-root .base-anchor-array{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 16px;
            min-width: 0;
        }

.base-base-root .base-anchor-bond{
            color: inherit;
            transition: all 0.25s ease;
            word-break: break-word;
            overflow-wrap: break-word;
            align-self: flex-start;
        }

.base-base-root .base-anchor-bond:hover{
            color: #ffffff;
            padding-left: 4px;
        }

.base-base-root .base-echo-zone{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
        }

.base-base-root .base-echo-yarn{
            word-break: break-word;
            overflow-wrap: break-word;
        }

@media (max-width: 768px){.base-base-root .base-base-mesh{
                flex-direction: column;
            }}