/* CSS Reset & Variables */
        :root {
            --tg-bg: #050505;
            --tg-surface: #121212;
            --tg-surface-hover: #1a1a1a;
            --tg-border: #262626;
            --tg-accent: #bf37b8;
            --tg-accent-glow: rgba(191, 55, 184, 0.2);
            --tg-text-main: #f0f0f0;
            --tg-text-muted: #999999;
            --tg-radius: 16px;
            --tg-radius-lg: 24px;
            --tg-transition: all 0.35s ease;
            --tg-max-width: 1280px;
        }

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

        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;
        }

        /* Core Layout Rules (Mandatory) */
        .wing {
            display: flex;
            flex-wrap: wrap;
        }
        
        .wing > * {
            min-width: 0;
        }

        .ray, .node {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .node {
            white-space: normal;
        }

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

        /* Typography */
        .node-1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
        .node-2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 1.5rem; }
        .node-3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
        .ray-lead { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--tg-text-muted); line-height: 1.6; margin-top: 1rem; }

        /* Component: Halo (Header) */
        .halo {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--tg-border);
            padding: 1rem 2rem;
        }

        .halo-inner {
            max-width: var(--tg-max-width);
            margin: 0 auto;
            justify-content: space-between;
            align-items: center;
        }

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

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

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

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

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

        .glyph.active::after {
            content: '';
            position: absolute;
            bottom: -1.25rem;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--tg-accent);
            box-shadow: 0 0 10px var(--tg-accent-glow);
        }

        /* Component: Vista (Hero - Cinematic Strip) */
        .vista {
            width: 100%;
            min-height: 55vh;
            display: flex;
            align-items: flex-end; /* Edge overlay */
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--tg-border);
            background: radial-gradient(ellipse at top right, rgba(191, 55, 184, 0.15) 0%, transparent 60%),
                        linear-gradient(180deg, transparent 50%, #050505 100%);
        }

        .vista::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
            opacity: 0.5;
        }

        .vista-inner {
            max-width: var(--tg-max-width);
            width: 100%;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 10;
        }

        .vista-leaf {
            max-width: 800px;
        }

        .zap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.5rem;
            background: var(--tg-accent);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--tg-transition);
            margin-top: 2rem;
            border: 1px solid transparent;
            cursor: pointer;
        }

        .zap:hover {
            background: transparent;
            border-color: var(--tg-accent);
            box-shadow: 0 0 20px var(--tg-accent-glow);
            transform: translateY(-2px);
        }

        .zap-ghost {
            background: transparent;
            border: 1px solid var(--tg-border);
            color: var(--tg-text-main);
            margin-left: 1rem;
        }

        .zap-ghost:hover {
            border-color: var(--tg-text-muted);
            background: var(--tg-surface);
            box-shadow: none;
        }

        /* Core Structure */
        .core {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding-bottom: 6rem;
        }

        .fold, .hull, .nest, .vein {
            max-width: var(--tg-max-width);
            width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Article: Proof (Showcase / Data UI) */
        .fold-layout {
            gap: 4rem;
            align-items: center;
        }
        
        .fold-ray {
            flex: 1 1 400px;
        }

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

        .data-dart {
            background: var(--tg-surface);
            border: 1px solid var(--tg-border);
            border-radius: var(--tg-radius-lg);
            padding: 1rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
        }

        .data-dart::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--tg-accent), transparent);
            opacity: 0.5;
        }

        .mark {
            width: 100%;
            height: auto;
            border-radius: var(--tg-radius);
            display: block;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .metrics {
            margin-top: 2rem;
            gap: 1.5rem;
        }

        .metric-hue {
            flex: 1 1 150px;
            background: rgba(255,255,255,0.02);
            border-left: 2px solid var(--tg-accent);
            padding: 1rem;
            border-radius: 0 var(--tg-radius) var(--tg-radius) 0;
        }

        .metric-val {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--tg-text-main);
        }

        .metric-lbl {
            font-size: 0.875rem;
            color: var(--tg-text-muted);
            margin-top: 0.25rem;
        }

        /* Div: Downloads (Platforms) */
        .hull-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .slate {
            background: var(--tg-surface);
            border: 1px solid var(--tg-border);
            border-radius: var(--tg-radius);
            padding: 2rem;
            transition: var(--tg-transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .echo {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--tg-accent);
        }

        .slate-leaf {
            flex-grow: 1;
        }

        /* Section: Ecosystem (Bento Grid) */
        .nest-bento {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .jade {
            background: linear-gradient(145deg, var(--tg-surface) 0%, #0a0a0a 100%);
            border: 1px solid var(--tg-border);
            border-radius: var(--tg-radius-lg);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: var(--tg-transition);
        }

        .jade:hover {
            border-color: #3a3a3a;
        }

        .jade:nth-child(1) { grid-column: span 2; }
        @media (max-width: 768px) {
            .jade:nth-child(1) { grid-column: span 1; }
        }

        .jade-echo {
            display: inline-flex;
            padding: 1rem;
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* Aside: Deep dive text */
        .vein-leaf {
            background: var(--tg-surface);
            border-radius: var(--tg-radius-lg);
            padding: 4rem;
            border: 1px solid var(--tg-border);
        }

        .ray-block {
            margin-bottom: 2rem;
        }
        
        .ray-block:last-child {
            margin-bottom: 0;
        }

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

        .base {
            max-width: var(--tg-max-width);
            margin: 0 auto;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
        }

        .root-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--tg-text-main);
            margin-bottom: 1rem;
        }

        .root-links {
            gap: 4rem;
        }

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

        .wire-node {
            color: var(--tg-text-main);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .wire-glyph {
            color: var(--tg-text-muted);
            text-decoration: none;
            transition: var(--tg-transition);
            font-size: 0.9rem;
        }

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

        .seal {
            max-width: var(--tg-max-width);
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--tg-border);
            text-align: center;
            color: var(--tg-text-muted);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .fold-layout { flex-direction: column; }
            .vein-leaf { padding: 2.5rem; }
        }

        @media (max-width: 768px) {
            .halo-inner { flex-direction: column; gap: 1rem; }
            .loop { gap: 1rem; flex-wrap: wrap; justify-content: center; }
            .vista { min-height: 40vh; padding: 3rem 1.5rem; }
            .core { gap: 4rem; padding-bottom: 4rem; }
            .zap-ghost { margin-left: 0; margin-top: 1rem; display: block; text-align: center; }
            .base { flex-direction: column; }
            .root-links { flex-direction: column; gap: 2rem; }
        }

.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; }}