:root {
            --accent: #cce760;
            --accent-hover: #b5cc55;
            --bg-main: #ffffff;
            --bg-alt: #f8fafc;
            --bg-dark: #0f172a;
            --text-dark: #0f172a;
            --text-mut: #475569;
            --text-light: #94a3b8;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 19px;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
            --transition: all 0.35s ease;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        }

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

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        /* Utility & Constraints */
        .covey {
            display: flex;
            flex-wrap: wrap;
        }

        .covey > * {
            min-width: 0;
        }

        .yarn {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .yarn-keep {
            word-break: keep-all;
            overflow-wrap: break-word;
        }

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

        /* Navigation (Strict Copy Styles) */
        .peta {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            padding: 1rem 0;
        }

        .tala {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        
        .tala > * {
            min-width: 0;
        }

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

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

        .wire.plume {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-mut);
        }

        .wire.plume:hover {
            color: var(--text-dark);
        }

        .wire.plume.active {
            color: var(--text-dark);
            font-weight: 600;
            position: relative;
        }

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

        /* Typography */
        .chant-mega {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .chant-prime {
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
        }

        .chant-sub {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .yarn-lead {
            font-size: 1.125rem;
            color: var(--text-mut);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        /* Buttons */
        .dash {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: var(--accent);
            color: var(--text-dark);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transform: translateY(0);
        }

        .dash:hover, .dash:focus {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            outline: none;
        }

        .fleet {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: transparent;
            color: var(--text-dark);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid rgba(15, 23, 42, 0.1);
            cursor: pointer;
            transform: translateY(0);
        }

        .fleet:hover, .fleet:focus {
            border-color: var(--text-dark);
            background-color: rgba(15, 23, 42, 0.02);
            transform: translateY(-2px);
            outline: none;
        }

        .trail-actions {
            gap: 1rem;
            margin-top: 2rem;
        }

        /* Section 1: Acquire (Hero Download Variant) */
        .olympus {
            padding: 6rem 0;
            background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 100%);
            overflow: hidden;
        }

        .olympus-grid {
            align-items: center;
            gap: 4rem;
        }

        .olympus-yarn {
            flex: 1 1 500px;
        }

        .olympus-visual {
            flex: 1 1 500px;
            position: relative;
        }

        .gaze-prime {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .missiv-code {
            background-color: var(--bg-dark);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .missiv-code code {
            font-family: var(--font-mono);
            color: #e2e8f0;
            font-size: 0.95rem;
        }

        .rune-yarn {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: var(--text-light);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            cursor: pointer;
            transition: var(--transition);
        }

        .missiv-code:hover .rune-yarn {
            stroke: var(--accent);
        }

        .covey-tags {
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .plume-tag {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.25rem 0.75rem;
            border-radius: 99px;
            background-color: rgba(204, 231, 96, 0.2);
            color: #5b6b1a;
        }

        /* Section 2: Platform Showcase */
        .soar {
            padding: 6rem 0;
            background-color: var(--bg-main);
        }

        .vault-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
        }

        .covey-matrix {
            gap: 2rem;
            align-items: stretch;
        }

        .envoy-platform {
            flex: 1 1 280px;
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            border: 1px solid rgba(15, 23, 42, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            transform: translateY(0);
        }

        .envoy-platform:hover {
            background: var(--bg-main);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: rgba(204, 231, 96, 0.5);
        }

        .rune-platform {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            padding: 10px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: var(--shadow-sm);
        }

        .rune-platform svg {
            width: 100%;
            height: 100%;
            stroke: var(--text-dark);
            stroke-width: 1.5;
            fill: none;
        }

        .yarn-desc {
            color: var(--text-mut);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .trail-meta {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-light);
            padding-top: 1rem;
            border-top: 1px solid rgba(15, 23, 42, 0.05);
            display: flex;
            justify-content: space-between;
        }

        .gaze-showcase {
            border-radius: var(--radius-lg);
            margin-bottom: 4rem;
            width: 100%;
            box-shadow: var(--shadow-md);
        }

        /* Section 3: Quick Guide */
        .zenith {
            padding: 6rem 0;
            background-color: var(--bg-alt);
            border-top: 1px solid rgba(15, 23, 42, 0.05);
        }

        .covey-steps {
            gap: 3rem;
            align-items: flex-start;
        }

        .pouch-stepinfo {
            flex: 1 1 400px;
        }

        .scroll-steps {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .envoy-step {
            background: var(--bg-main);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .rune-stepnum {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--accent);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
        }

        .yarn-step {
            color: var(--text-mut);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* Footer */
        .hades {
            background-color: var(--bg-main);
            padding: 4rem 0 2rem 0;
            border-top: 1px solid rgba(15, 23, 42, 0.05);
        }

        .realm {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .realm > * {
            min-width: 0;
        }

        .chant-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-dark);
        }

        .styx {
            border-top: 1px solid rgba(15, 23, 42, 0.05);
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.875rem;
        }
        
        .styx > * {
            min-width: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .chant-mega { font-size: 3rem; }
            .olympus-grid { gap: 2rem; }
            .envoy-platform { flex-basis: calc(50% - 1rem); }
        }

        @media (max-width: 768px) {
            .flock { display: none; /* Simplification for mobile [role="navigation"] without JS */ }
            .olympus { padding: 4rem 0; }
            .olympus-grid { flex-direction: column; }
            .olympus-yarn, .olympus-visual { flex-basis: 100%; width: 100%; }
            .trail-actions { flex-direction: column; }
            .dash, .fleet { width: 100%; }
            .envoy-platform { flex-basis: 100%; }
            .covey-steps { flex-direction: column; }
            .realm { flex-direction: column; text-align: center; justify-content: center; }
            .styx { flex-direction: column; gap: 1rem; text-align: center; }
        }

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

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

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

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

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

.tala-peta a.tala-wire.tala-plume {
    --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;
}

.tala-peta a.tala-wire.tala-plume,
.tala-peta a.tala-wire.tala-plume:hover,
.tala-peta a.tala-wire.tala-plume:focus,
.tala-peta a.tala-wire.tala-plume:active,
.tala-peta a.tala-wire.tala-plume.active,
.tala-peta a.tala-wire.tala-plume[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);
}

.tala-peta{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            padding: 1rem 0;
        }

.tala-peta .tala-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.tala-peta .tala-tala{
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

.tala-peta .tala-crest{
            display: flex;
            align-items: center;
        }

.tala-peta .tala-crest img{
            height: 32px;
            width: auto;
        }

.tala-peta .tala-flock{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.tala-peta .tala-wire.tala-plume{
            font-size: 0.95rem;
            font-weight: 500;
            color: #475569;
            position: relative;
        }

.tala-peta .tala-wire.tala-plume:hover, .tala-peta .tala-wire.tala-plume.active{
            color: #0f172a;
        }

.tala-peta .tala-wire.tala-plume.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #cce760;
            border-radius: 2px;
        }

@media (max-width: 768px){.tala-peta .tala-flock{
                display: none; 
            }

.tala-peta .tala-tala{
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

.tala-peta .tala-flock{
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                width: 100%;
            }}

.tala-peta {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.hades-hades .hades-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.hades-hades{
            background-color: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
        }

.hades-hades .hades-heel-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.hades-hades .hades-heel-brand{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.hades-hades .hades-styx-links{
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

.hades-hades .hades-styx-col{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.hades-hades .hades-styx-chant{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

.hades-hades .hades-wire.hades-trail{
            font-size: 0.9rem;
            transition: all 0.35s ease;
        }

.hades-hades .hades-wire.hades-trail:hover{
            color: #cce760;
        }

.hades-hades .hades-heel-bottom{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }