:root {
            --tg-bg: #050505;
            --tg-surface: #121212;
            --tg-surface-hover: #1a1a1a;
            --tg-accent: #bf37b8;
            --tg-accent-glow: rgba(191, 55, 184, 0.2);
            --tg-accent-dim: rgba(191, 55, 184, 0.1);
            --tg-text-main: #f0f0f0;
            --tg-text-muted: #999999;
            --tg-radius: 16px;
            --tg-radius-lg: 24px;
            --tg-max-width: 1200px;
            --tg-transition: 0.35s ease;
        }

        * {
            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(--tg-bg);
            color: var(--tg-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* Nav Inheritance */
        .halo {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .halo-inner {
            max-width: var(--tg-max-width);
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .ink img {
            height: 32px;
            width: auto;
            display: block;
        }

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

        .glyph {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--tg-text-muted);
            position: relative;
        }

        .glyph:hover {
            color: var(--tg-text-main);
        }

        .glyph.active {
            color: var(--tg-text-main);
        }

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

        /* Main Container */
        .hull {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Common Section Leaf (Wrapper) */
        .leaf {
            max-width: var(--tg-max-width);
            margin: 0 auto;
            padding: 5rem 1.5rem;
            width: 100%;
        }

        /* Typography */
        .node-1 {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.15;
            white-space: normal;
            margin-bottom: 1.5rem;
        }

        .node-2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.2;
            white-space: normal;
            margin-bottom: 1rem;
        }

        .node-3 {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            white-space: normal;
            margin-bottom: 0.5rem;
            color: var(--tg-text-main);
        }

        .ray-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--tg-text-muted);
            margin-bottom: 2rem;
            max-width: 680px;
            word-break: keep-all;
        }

        .ray-muted {
            color: var(--tg-text-muted);
            font-size: 0.95rem;
        }

        /* Hero (Vista) */
        .vista {
            width: 100%;
            min-height: 55vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: radial-gradient(circle at 80% 20%, var(--tg-accent-dim) 0%, transparent 50%),
                        linear-gradient(180deg, transparent 60%, var(--tg-bg) 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .vista .leaf {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            padding-top: 6rem;
            padding-bottom: 6rem;
        }

        .vista-wing {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            z-index: 2;
        }

        .vista-echo {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .vista-echo svg {
            width: 100%;
            max-width: 420px;
            height: auto;
            filter: drop-shadow(0 0 30px var(--tg-accent-glow));
        }

        .zap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.8rem;
            background: var(--tg-accent);
            color: #fff;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid transparent;
            transition: all var(--tg-transition);
            width: max-content;
            cursor: pointer;
        }

        .zap:hover {
            background: #d447cd;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--tg-accent-glow);
        }

        /* Checklist (Detail Fold) */
        .fold {
            background: var(--tg-bg);
            position: relative;
        }

        .fold-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .slate {
            background: var(--tg-surface);
            border: 1px solid #262626;
            border-radius: var(--tg-radius);
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1rem;
            transition: transform var(--tg-transition), border-color var(--tg-transition);
        }

        .slate:hover {
            transform: translateY(-4px);
            border-color: rgba(191, 55, 184, 0.4);
        }

        .slate-echo {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(191, 55, 184, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tg-accent);
        }

        /* Tutorial Steps (Cloud) */
        .cloud {
            background: linear-gradient(180deg, var(--tg-bg) 0%, var(--tg-surface) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .cloud-path {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
            position: relative;
        }

        .cloud-path::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 24px;
            bottom: 24px;
            width: 2px;
            background: linear-gradient(180deg, var(--tg-accent) 0%, transparent 100%);
            opacity: 0.3;
            z-index: 0;
        }

        .jade {
            background: var(--tg-bg);
            border: 1px solid #262626;
            border-radius: var(--tg-radius);
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: border-color var(--tg-transition);
        }

        .jade:hover {
            border-color: rgba(191, 55, 184, 0.5);
        }

        .jade-digit {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            background: var(--tg-surface);
            border: 2px solid #262626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--tg-accent);
            box-shadow: 0 0 0 8px var(--tg-bg);
        }
        
        .jade:hover .jade-digit {
            border-color: var(--tg-accent);
            background: rgba(191, 55, 184, 0.1);
        }

        .jade-ray {
            flex: 1 1 200px;
            display: flex;
            flex-direction: column;
        }

        /* Resources (Flare) */
        .flare {
            background: var(--tg-bg);
        }

        .flare-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .dart {
            background: transparent;
            border-top: 1px solid #262626;
            padding: 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: padding-left var(--tg-transition);
        }

        .dart:hover {
            padding-left: 1rem;
            border-top-color: var(--tg-accent);
        }

        .dart-echo {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--tg-accent);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer (Blip) */
        .blip {
            background: var(--tg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 1.5rem;
            text-align: center;
        }

        .blip-node {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--tg-text-main);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .blip-wire {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .blip-wire a {
            color: var(--tg-text-muted);
            font-size: 0.9rem;
        }
        
        .blip-wire a:hover {
            color: var(--tg-accent);
        }

        /* Responsive Rules */
        @media (max-width: 768px) {
            .loop {
                display: none; /* Mobile menu behavior implied but visually simplified here for structure */
            }
            
            .vista .leaf {
                gap: 2rem;
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            .cloud-path::before {
                left: 20px;
            }

            .jade {
                gap: 1rem;
                padding: 1.5rem;
            }
            
            .jade-digit {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                box-shadow: 0 0 0 4px var(--tg-bg);
            }
        }

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

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

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

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

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

.helm-halo a.helm-glyph {
    --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;
}

.helm-halo a.helm-glyph,
.helm-halo a.helm-glyph:hover,
.helm-halo a.helm-glyph:focus,
.helm-halo a.helm-glyph:active,
.helm-halo a.helm-glyph.active,
.helm-halo a.helm-glyph[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-halo .helm-wing{
            display: flex;
            flex-wrap: wrap;
        }

.helm-halo .helm-wing > *{
            min-width: 0;
        }

.helm-halo{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #262626;
            padding: 1rem 2rem;
        }

.helm-halo .helm-halo-inner{
            max-width: 1280px;
            margin: 0 auto;
            justify-content: space-between;
            align-items: center;
        }

.helm-halo .helm-ink img{
            height: 32px;
            width: auto;
            display: block;
        }

.helm-halo .helm-loop{
            gap: 2rem;
            align-items: center;
        }

.helm-halo .helm-glyph{
            color: #999999;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.35s ease;
            position: relative;
        }

.helm-halo .helm-glyph:hover{
            color: #f0f0f0;
        }

.helm-halo .helm-glyph.active{
            color: #f0f0f0;
        }

.helm-halo .helm-glyph.active::after{
            content: '';
            position: absolute;
            bottom: -1.25rem;
            left: 0;
            width: 100%;
            height: 2px;
            background: #bf37b8;
            box-shadow: 0 0 10px rgba(191, 55, 184, 0.2);
        }

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

.helm-halo .helm-loop{ gap: 1rem; flex-wrap: wrap; justify-content: center; }}

.helm-halo {
    background: rgb(5, 5, 5);
    background-image: none;
}

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

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

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

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

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

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

.root-blip .root-wing{
            display: flex;
            flex-wrap: wrap;
        }

.root-blip .root-wing > *{
            min-width: 0;
        }

.root-blip .root-ray{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.root-blip p.root-ray{
            word-break: keep-all;
            line-height: 1.7;
        }

.root-blip{
            border-top: 1px solid #262626;
            padding: 4rem 2rem 2rem;
            background: #050505;
            margin-top: auto;
        }

.root-blip .root-base{
            max-width: 1280px;
            margin: 0 auto;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
        }

.root-blip .root-root-brand{
            font-size: 1.5rem;
            font-weight: 700;
            color: #f0f0f0;
            margin-bottom: 1rem;
        }

.root-blip .root-root-links{
            gap: 4rem;
        }

.root-blip .root-wire{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.root-blip .root-wire-node{
            color: #f0f0f0;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

.root-blip .root-wire-glyph{
            color: #999999;
            text-decoration: none;
            transition: all 0.35s ease;
            font-size: 0.9rem;
        }

.root-blip .root-wire-glyph:hover{
            color: #bf37b8;
        }

.root-blip .root-seal{
            max-width: 1280px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid #262626;
            text-align: center;
            color: #999999;
            font-size: 0.875rem;
        }

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

.root-blip .root-root-links{ flex-direction: column; gap: 2rem; }}