/* Base & Reset */
        :root {
            --bg-deep: #050505;
            --bg-surface: #111111;
            --bg-elevated: #1a1a1a;
            --accent: #df881f;
            --accent-glow: rgba(223, 136, 31, 0.2);
            --text-main: #e0e0e0;
            --text-muted: #888888;
            --border: #2a2a2a;
            --radius: 16px;
            --transition: 0.35s ease;
        }

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

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

        /* Typography */
        h1, h2, h3, h4 {
            color: #ffffff;
            line-height: 1.2;
            white-space: normal;
            font-weight: 700;
        }

        p, span, div, a {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; /* Better for Chinese */
        }

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

        a:hover, a:focus {
            color: #f0a04b;
        }

        /* Utility Rules */
        .flex {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex > * {
            min-width: 0;
        }

        .grid {
            display: grid;
        }

        /* Structure */
        .cloak {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        .zenith {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 2rem;
            align-items: center;
            justify-content: space-between;
        }

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

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

        .helm-wire {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }

        .helm-wire::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width var(--transition);
        }

        .helm-wire:hover::after,
        .helm-wire:focus::after,
        .helm-wire.active::after {
            width: 100%;
        }

        .helm-wire.active {
            color: #ffffff;
        }

        /* Main Container */
        .realm {
            flex: 1;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding-bottom: 6rem;
        }

        /* Hero (Mosaic Prototype) */
        .flare {
            padding-top: 6rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .apex {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .apex .crown {
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: -0.02em;
        }

        .apex .script {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 90%;
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            color: #000000;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            width: fit-content;
            box-shadow: 0 4px 20px var(--accent-glow);
            transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
        }

        .pulse:hover, .pulse:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(223, 136, 31, 0.4);
            background-color: #e5993b;
            color: #000000;
        }

        /* Mosaic Layout for Hero Visuals */
        .surge {
            display: grid;
            grid-template-areas: 
                "a b"
                "c b"
                "c d";
            gap: 1.5rem;
            height: 100%;
            min-height: 500px;
        }

        .packet {
            background-color: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: border-color var(--transition);
        }
        
        .packet:hover {
            border-color: var(--accent);
        }

        .packet::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
            opacity: 0.5;
        }

        .packet:nth-child(1) { grid-area: a; }
        .packet:nth-child(2) { grid-area: b; align-items: center; text-align: center;}
        .packet:nth-child(3) { grid-area: c; justify-content: flex-end;}
        .packet:nth-child(4) { grid-area: d; background-color: var(--accent); color: #000; border: none;}

        .packet .glyph {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            z-index: 1;
        }

        .packet .crown {
            font-size: 1.25rem;
            z-index: 1;
            margin-bottom: 0.5rem;
        }
        
        .packet:nth-child(4) .crown {
            color: #000;
        }

        .packet .script {
            font-size: 0.9rem;
            color: var(--text-muted);
            z-index: 1;
        }
        
        .packet:nth-child(4) .script {
            color: rgba(0,0,0,0.8);
        }

        /* Lead Article */
        .vault.lead {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(180deg, var(--bg-surface) 0%, transparent 100%);
            padding: 4rem;
            border-radius: var(--radius);
            border-top: 1px solid var(--border);
        }

        .vault.lead .crown {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .vault.lead .script {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        /* Grid Sections (Features, Guides) */
        .hull {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .hull > .crown {
            font-size: 2.25rem;
            text-align: center;
        }

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

        .shard {
            background-color: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .shard:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border-color: rgba(223, 136, 31, 0.3);
        }

        .shard .glyph {
            width: 56px;
            height: 56px;
            background-color: var(--bg-elevated);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .shard .glyph svg {
            width: 32px;
            height: 32px;
        }

        .shard .crown {
            font-size: 1.4rem;
        }

        .shard .script {
            color: var(--text-muted);
            font-size: 1rem;
        }
        
        .bead {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .bead::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background-color: var(--accent);
            border-radius: 50%;
            margin-top: 0.5rem;
            flex-shrink: 0;
        }

        /* Alternate Section (Download Info) */
        .vault.acquire {
            background-color: var(--bg-elevated);
            border-radius: var(--radius);
            padding: 4rem;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
            border-left: 4px solid var(--accent);
        }
        
        .vault.acquire .crown {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .hull.faq {
            max-width: 900px;
            margin: 0 auto;
        }

        .streak {
            border-bottom: 1px solid var(--border);
            padding: 2rem 0;
        }

        .streak:last-child {
            border-bottom: none;
        }

        .streak .crown {
            font-size: 1.25rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        /* Footer */
        .nadir {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border);
            padding: 4rem 2rem 2rem;
            margin-top: auto;
        }

        .base {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

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

        .root .crown {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .root .wire {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .root .wire:hover {
            color: var(--accent);
        }

        .nadir .script {
            text-align: center;
            color: #555;
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
            padding-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .flare {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .surge {
                min-height: 400px;
            }
            .vault.acquire {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem;
            }
        }

        @media (max-width: 768px) {
            .zenith {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .orbit {
                justify-content: center;
                gap: 1rem;
            }
            .realm {
                padding: 0 1.5rem;
                gap: 4rem;
            }
            .vault.lead {
                padding: 2rem 1.5rem;
            }
            .surge {
                grid-template-areas: 
                    "a"
                    "b"
                    "c"
                    "d";
            }
            .flock {
                grid-template-columns: 1fr;
            }
        }

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

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

.helm-zenith.helm-flex p,
.helm-zenith.helm-flex h1,
.helm-zenith.helm-flex h2,
.helm-zenith.helm-flex h3,
.helm-zenith.helm-flex h4,
.helm-zenith.helm-flex h5,
.helm-zenith.helm-flex h6 {
    text-decoration: none;
}

.helm-zenith.helm-flex img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.helm-zenith.helm-flex {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2 {
    --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;
}

.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2:hover,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2:focus,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2:active,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2.active,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2[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);
}

.helm-zenith.helm-flex .helm-flex{
            display: flex;
            flex-wrap: wrap;
        }

.helm-zenith.helm-flex .helm-flex > *{
            min-width: 0;
        }

.helm-zenith.helm-flex .helm-zenith{
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #2a2a2a;
            padding: 1rem 2rem;
            align-items: center;
            justify-content: space-between;
        }

.helm-zenith.helm-flex .helm-sigil{
            display: flex;
            align-items: center;
        }

.helm-zenith.helm-flex .helm-sigil img{
            height: 32px;
            width: auto;
        }

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

.helm-zenith.helm-flex .helm-helm-wire{
            color: #e0e0e0;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }

.helm-zenith.helm-flex .helm-helm-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #df881f;
            transition: width 0.35s ease;
        }

.helm-zenith.helm-flex .helm-helm-wire:hover::after, .helm-zenith.helm-flex .helm-helm-wire:focus::after, .helm-zenith.helm-flex .helm-helm-wire.active::after{
            width: 100%;
        }

.helm-zenith.helm-flex .helm-helm-wire.active{
            color: #ffffff;
        }

@media (max-width: 768px){.helm-zenith.helm-flex .helm-zenith{
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

.helm-zenith.helm-flex .helm-orbit{
                justify-content: center;
                gap: 1rem;
            }}

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

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

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

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

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

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

.anchor-nadir{
            background-color: #111111;
            border-top: 1px solid #2a2a2a;
            padding: 4rem 2rem 2rem;
            margin-top: auto;
        }

.anchor-nadir .anchor-base{
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

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

.anchor-nadir .anchor-root .anchor-crown{
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

.anchor-nadir .anchor-root .anchor-wire{
            color: #888888;
            font-size: 0.95rem;
        }

.anchor-nadir .anchor-root .anchor-wire:hover{
            color: #df881f;
        }

.anchor-nadir .anchor-script{
            text-align: center;
            color: #555;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a2a;
            padding-top: 2rem;
        }