/* ==========================================================================
           Variables & Reset
           ========================================================================== */
        :root {
            --accent: #cce760;
            --accent-hover: #b5cc55;
            --bg-main: #ffffff;
            --bg-alt: #f8fafc;
            --text-dark: #0f172a;
            --text-mut: #475569;
            --text-light: #94a3b8;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 19px;
            --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
            --transition: all 0.35s ease;
            --code-bg: #1e293b;
            --code-text: #e2e8f0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox safety */
        }

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

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

        /* ==========================================================================
           Navigation (Mandatory Reuse)
           ========================================================================== */
        .peta {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

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

        .tala {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

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

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

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

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

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

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

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

        /* ==========================================================================
           Typography & Layout Structures
           ========================================================================== */
        .vault {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .pouch {
            max-width: 1000px; /* Slightly narrower for reading content */
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .agora {
            padding: 6rem 0;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .bg-alt {
            background-color: var(--bg-alt);
        }

        .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;
            white-space: normal;
        }

        .chant-large {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin-bottom: 2rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .chant-mid {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

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

        .dash {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--accent);
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px 0 rgba(204, 231, 96, 0.39);
        }

        .dash:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(204, 231, 96, 0.4);
        }

        /* ==========================================================================
           Hero Section (card_float visual seed)
           ========================================================================== */
        .olympus {
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-main) 100%);
            position: relative;
            overflow: hidden;
        }

        .olympus-covey {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

        .olympus-yarn {
            flex: 1;
            min-width: 300px;
            z-index: 2;
        }

        .olympus-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: 400px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        /* Floating Cards Design */
        .scroll {
            background: var(--bg-main);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-float);
            position: absolute;
            width: 280px;
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .scroll:hover {
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
        }

        .scroll-1 {
            top: 10%;
            left: 10%;
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        .scroll-2 {
            bottom: 10%;
            right: 5%;
            z-index: 2;
            animation: float 6s ease-in-out infinite;
            animation-delay: -3s;
            background: var(--text-dark);
            color: var(--bg-main);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .rune-large {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(204, 231, 96, 0.2);
            color: var(--text-dark);
        }

        .scroll-2 .rune-large {
            background: rgba(255,255,255,0.1);
            color: var(--accent);
        }

        /* Decorative background shapes */
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            opacity: 0.4;
        }
        .shape-1 {
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: var(--accent);
        }

        /* ==========================================================================
           Step-by-Step Sections
           ========================================================================== */
        .missiv {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: flex-start;
            margin-bottom: 4rem;
        }

        .missiv:last-child {
            margin-bottom: 0;
        }

        .missiv-info {
            flex: 1;
            min-width: 280px;
        }

        .missiv-code {
            flex: 1.2;
            min-width: 320px;
        }

        .rune-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--text-dark);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            margin-right: 1rem;
            vertical-align: middle;
        }

        /* ==========================================================================
           Code Blocks
           ========================================================================== */
        .cloak-code {
            background: var(--code-bg);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cloak-code::before {
            content: '';
            display: block;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            background: #ff5f56;
            box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
            margin-bottom: 1rem;
        }

        .yarn-mono {
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 0.9rem;
            color: var(--code-text);
            line-height: 1.6;
            white-space: pre-wrap;
            word-break: break-all;
        }

        .yarn-mono .hl-keyword { color: #c678dd; }
        .yarn-mono .hl-string { color: #98c379; }
        .yarn-mono .hl-comment { color: #5c6370; font-style: italic; }
        .yarn-mono .hl-func { color: #61afef; }

        /* ==========================================================================
           Zenith Container (Verification Block)
           ========================================================================== */
        .zenith {
            background: var(--bg-main);
            padding: 4rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            text-align: center;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
        }

        .zenith .cloak-code {
            width: 100%;
            max-width: 600px;
            text-align: left;
            margin: 2rem auto 0;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .hades {
            background-color: var(--text-dark);
            color: var(--bg-alt);
            padding: 5rem 0 3rem;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .realm {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 3rem;
        }

        .styx-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--bg-main);
        }

        .styx-flock {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .styx-wire {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .styx-wire:hover {
            color: var(--accent);
        }

        /* ==========================================================================
           Media Queries
           ========================================================================== */
        @media (max-width: 1024px) {
            .chant-mega { font-size: 3rem; }
            .olympus-visual { height: 350px; }
            .scroll { width: 240px; }
        }

        @media (max-width: 768px) {
            .flock { display: none; /* Simplistic mobile [role="navigation"] handling for template */ }
            .olympus { padding: 4rem 0; text-align: center; }
            .olympus-covey { gap: 2rem; justify-content: center; }
            .olympus-visual { display: none; /* Hide complex visual on mobile */ }
            .missiv { flex-direction: column; gap: 1.5rem; }
            .zenith { padding: 2rem; }
            .realm { flex-direction: column; gap: 2rem; 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;
        }