/* CSS Variables - Inherited from visual contract */
        :root {
            --primary: #70c1e1;
            --primary-hover: #5baac9;
            --surface: #ffffff;
            --surface-alt: #f4f7f9;
            --surface-dark: #1e293b;
            --text-main: #2d3748;
            --text-muted: #64748b;
            --radius: 16px;
            --radius-sm: 8px;
            --shadow-soft: 0 12px 36px -8px rgba(112, 193, 225, 0.15);
            --shadow-hover: 0 20px 40px -10px rgba(112, 193, 225, 0.25);
            --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition: all 0.25s ease;
        }

        /* Global Resets & Basics */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--surface-alt);
            color: var(--text-main);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        /* Mandatory Flexbox & Text Rules */
        .flex-herd {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-herd > * {
            min-width: 0;
        }

        .gist-wrap {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        
        p.gist-wrap {
            word-break: keep-all;
        }

        /* Reused Header Styles */
        .loft-cloak {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(112, 193, 225, 0.1);
        }

        .loft-cloak > * {
            min-width: 0;
        }

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

        .orbit {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }
        
        .orbit > * {
            min-width: 0;
        }

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

        .axon:hover, .axon.active {
            color: var(--primary);
        }

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

        /* Layout Structure */
        .matrix {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

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

        /* Hero Download Section (Article) */
        .flare-apex {
            padding: 10vh 0 8vh;
            background: linear-gradient(145deg, var(--surface) 0%, #eef6f9 100%);
            border-bottom: 1px solid rgba(112, 193, 225, 0.1);
        }

        .flare-grid {
            gap: 48px;
            align-items: center;
        }

        .flare-gist-realm {
            flex: 1 1 500px;
        }

        .flare-lens-realm {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
        }

        .flare-lens-realm img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow-soft);
        }

        .crest-apex {
            line-height: 1.2;
            color: #0f172a;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
        }

        .gist-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .flux-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 48px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1.125rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(112, 193, 225, 0.4);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            gap: 12px;
        }

        .flux-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(112, 193, 225, 0.5);
            background: var(--primary-hover);
        }

        .version-band {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-top: 24px;
            padding: 12px 24px;
            background: rgba(112, 193, 225, 0.1);
            border-radius: 40px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .version-band span {
            font-weight: 600;
            color: var(--text-main);
        }

        /* Platform Matrix (Section) */
        .prism-herd {
            padding: 8vh 0;
        }

        .crest-sub {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--text-main);
            text-align: center;
            margin-bottom: 48px;
        }

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

        .voxel {
            background: var(--surface);
            padding: 40px 32px;
            border-radius: var(--radius);
            border: 1px solid rgba(112, 193, 225, 0.15);
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .voxel:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .rune-realm {
            width: 64px;
            height: 64px;
            background: rgba(112, 193, 225, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .rune-realm svg {
            width: 32px;
            height: 32px;
        }

        .voxel .crest-node {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .voxel-stem {
            list-style: none;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .voxel-stem li {
            color: var(--text-muted);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        
        .voxel-stem li::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
        }

        .flux-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            color: var(--primary);
            background: transparent;
            border: 2px solid var(--primary);
            text-decoration: none;
            transition: var(--transition);
            width: 100%;
        }

        .flux-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Security Verification (Aside) */
        .prism-band {
            padding: 6vh 0;
            background: var(--surface-dark);
            color: white;
        }

        .prism-band .crest-sub {
            color: white;
            text-align: left;
            margin-bottom: 32px;
            font-size: 2rem;
        }

        .shield-grid {
            gap: 32px;
        }

        .shield-node {
            flex: 1 1 300px;
            background: rgba(255, 255, 255, 0.05);
            padding: 32px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .shield-node .crest-node {
            font-size: 1.25rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--primary);
        }

        .code-band {
            background: rgba(0, 0, 0, 0.3);
            padding: 12px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.85rem;
            color: #a0aec0;
            word-break: break-all;
            margin-bottom: 16px;
        }

        .axon-gist {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .axon-gist:hover {
            text-decoration: underline;
        }

        /* Changelog Snippet (Div) */
        .prism-node {
            padding: 8vh 0 10vh;
        }

        .timeline-herd {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .timeline-stem {
            background: var(--surface);
            padding: 32px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .timeline-loft {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            gap: 16px;
        }

        .timeline-loft > * {
            min-width: 0;
        }

        .timeline-version {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .timeline-date {
            font-size: 0.9rem;
            color: var(--text-muted);
            background: var(--surface-alt);
            padding: 4px 12px;
            border-radius: 20px;
        }

        .timeline-gist {
            margin-top: 12px;
            color: var(--text-muted);
        }
        
        .tag-herd {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }
        
        .tag-herd > * {
            min-width: 0;
        }

        .tag-band {
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(112, 193, 225, 0.1);
            color: var(--primary);
        }

        /* Footer */
        .hush-cloak {
            background: var(--surface);
            padding: 60px 5% 40px;
            border-top: 1px solid rgba(112, 193, 225, 0.1);
        }

        .hush-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .hush-grid > * {
            min-width: 0;
        }

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

        .hush-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .hush-links > * {
            min-width: 0;
        }

        .hush-links .axon {
            font-size: 0.9rem;
        }

        .hush-gist {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--surface-alt);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .flare-apex {
                padding: 6vh 0;
            }
            .loft-cloak {
                padding: 16px 5%;
                justify-content: center;
                gap: 16px;
            }
            .orbit {
                justify-content: center;
                gap: 16px;
            }
            .flare-grid, .shield-grid {
                flex-direction: column;
            }
            .crest-apex {
                text-align: center;
            }
            .gist-lead {
                text-align: center;
            }
            .flare-gist-realm {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

.orbit-loft-cloak .orbit-orbit, .orbit-loft-cloak{
            display: flex;
            flex-wrap: wrap;
        }

.orbit-loft-cloak .orbit-orbit > *, .orbit-loft-cloak > *{
            min-width: 0;
        }

.orbit-loft-cloak{
            justify-content: space-between;
            align-items: center;
            padding: 16px 6vw;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(112, 193, 225, 0.15);
        }

.orbit-loft-cloak .orbit-glyph img{
            height: 36px;
            width: auto;
            border-radius: 0; 
        }

.orbit-loft-cloak .orbit-orbit{
            gap: 1.5rem;
            align-items: center;
        }

.orbit-loft-cloak .orbit-axon{
            font-weight: 500;
            font-size: 0.95rem;
            color: #64748b;
            padding: 8px 16px;
            border-radius: 8px;
        }

.orbit-loft-cloak .orbit-axon:hover, .orbit-loft-cloak .orbit-axon.active{
            color: #70c1e1;
            background: rgba(112, 193, 225, 0.1);
        }

@media (max-width: 768px){.orbit-loft-cloak .orbit-orbit{ display: flex; flex-direction: column; width: 100%; margin-top: 1rem; align-items: flex-start; gap: 0.5rem; }

.orbit-loft-cloak .orbit-axon{ width: 100%; padding: 12px 16px; background: rgba(0,0,0,0.02); }}

.orbit-loft-cloak {
    background: rgb(255, 255, 255);
    background-image: none;
}

.echo-hush {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    word-break: break-word;
    color: var(--gist-main);
}
.echo-hush,
.echo-hush *,
.echo-hush *::before,
.echo-hush *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.echo-hush .echo-realm, .echo-hush{
            display: flex;
            flex-wrap: wrap;
        }

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

.echo-hush .echo-realm{
            width: 100%;
            max-width: 1240px; 
            margin: 0 auto;
            padding: 0 6vw;
        }

.echo-hush{ background: #0f172a; padding: 80px 6vw 40px; color: #64748b; }

.echo-hush .echo-realm{ justify-content: space-between; gap: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 30px; }

.echo-hush .echo-hush-brand{ font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 1.5rem; display: block; letter-spacing: -0.02em; }

.echo-hush .echo-hush-gist{ max-width: 300px; line-height: 1.6; }

.echo-hush .echo-hush-vein{ display: flex; flex-direction: column; gap: 1rem; }

.echo-hush .echo-hush-vein-crest{ color: white; font-weight: 600; margin-bottom: 0.5rem; font-size: 1.1rem; }

.echo-hush .echo-hush-axon{ transition: all 0.25s ease; }

.echo-hush .echo-hush-axon:hover{ color: #70c1e1; }

.echo-hush .echo-band{ width: 100%; text-align: center; font-size: 0.9rem; }

@media (max-width: 768px){.echo-hush .echo-realm{ flex-direction: column; gap: 2rem; }}