/* ==========================================================================
           Foundation & Reset
           ========================================================================== */
        :root {
            --color-bg: #090a0c;
            --color-surface: #121418;
            --color-surface-hover: #1a1d24;
            --color-primary: #38d5ca; /* Required Theme Color */
            --color-primary-dim: rgba(56, 213, 202, 0.15);
            --color-text-main: #e2e4e9;
            --color-text-muted: #8b949e;
            --color-border: rgba(255, 255, 255, 0.08);
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            
            --transition: all 0.35s ease;
            --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex safe */
        }

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

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

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

        /* Layout Utilities */
        .mesh {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .flex-bind {
            display: flex;
            flex-wrap: wrap;
        }

        /* Typography */
        .helm-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 24px;
        }

        .helm-major {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 600;
            line-height: 1.25;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 20px;
        }

        .helm-minor {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 12px;
        }

        .soie-lead {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .soie-base {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-bottom: 16px;
        }

        /* ==========================================================================
           Navigation (.brim)
           ========================================================================== */
        .brim {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(9, 10, 12, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

        .brim-bind {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .sigil {
            height: 28px;
            display: flex;
            align-items: center;
        }

        .sigil img {
            height: 100%;
            object-fit: contain;
        }

        .reins {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .weave {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .fil {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-muted);
            position: relative;
            padding: 8px 0;
        }

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

        .fil::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: width 0.3s ease;
        }

        .fil:hover::after, .fil.active::after {
            width: 100%;
        }

        /* ==========================================================================
           Hero Blueprint: reverse_split (.aura)
           Image/Visual on LEFT (55-65%), Text on RIGHT (narrower)
           ========================================================================== */
        .aura {
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
            padding-top: 72px; /* Offset for header */
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 30% 50%, rgba(56, 213, 202, 0.08) 0%, transparent 60%);
        }

        .lucid-lens-bind {
            width: 55%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0; /* Touch left edge */
            position: relative;
        }

        .lucid-lens-bind svg {
            width: 100%;
            height: 100%;
            max-height: 80vh;
            object-fit: cover;
        }

        .selle-soie-bind {
            width: 45%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 8% 60px 40px;
        }

        /* Features List in Hero */
        .knot-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .stitch-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 30px;
            font-size: 0.875rem;
            color: var(--color-text-main);
        }

        .stitch-pill svg {
            width: 14px;
            height: 14px;
            fill: var(--color-primary);
        }

        /* Buttons */
        .clasp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            height: 52px;
            background: var(--color-primary);
            color: #000000;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(56, 213, 202, 0.3);
            border: 1px solid transparent;
        }

        .clasp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(56, 213, 202, 0.4);
            background: #46e8dd;
        }

        .clasp-alt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            height: 52px;
            background: transparent;
            color: var(--color-text-main);
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            border: 1px solid var(--color-border);
        }

        .clasp-alt:hover {
            background: var(--color-surface-hover);
            border-color: rgba(255,255,255,0.2);
        }

        .tact-knot {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ==========================================================================
           Core Pillars (.realm)
           ========================================================================== */
        .realm {
            padding: 120px 0;
            border-top: 1px solid var(--color-border);
        }

        .realm-brim {
            max-width: 700px;
            margin-bottom: 60px;
        }

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

        .shard {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .shard:hover {
            transform: translateY(-5px);
            border-color: rgba(56, 213, 202, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .shard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .shard:hover::before {
            opacity: 1;
        }

        .glyph-bind {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: var(--color-primary-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .glyph-bind svg {
            width: 28px;
            height: 28px;
            stroke: var(--color-primary);
            stroke-width: 1.5;
            fill: none;
        }

        .shard .fil-inline {
            margin-top: auto;
            padding-top: 24px;
            color: var(--color-primary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .shard .fil-inline svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .shard:hover .fil-inline svg {
            transform: translateX(4px);
        }

        /* ==========================================================================
           Enterprise Architecture (.craft)
           ========================================================================== */
        .craft {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
            border-top: 1px solid var(--color-border);
        }

        .craft-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .craft-soie-bind {
            flex: 1;
            min-width: 320px;
        }

        .craft-lens-bind {
            flex: 1.2;
            min-width: 320px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .craft-lens-bind::after {
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            pointer-events: none;
        }

        .strap-weave {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .strap-stitch {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .strap-glyph {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .strap-glyph svg {
            width: 16px;
            height: 16px;
            fill: var(--color-primary);
        }

        .strap-soie .helm-minor {
            margin-bottom: 4px;
            font-size: 1.1rem;
        }

        /* ==========================================================================
           Supplementary Guide (aside)
           ========================================================================== */
        .guide {
            padding: 80px 0;
            background: var(--color-bg);
            border-top: 1px solid var(--color-border);
        }

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

        .guide-stitch {
            padding-left: 20px;
            border-left: 2px solid var(--color-border);
            transition: var(--transition);
        }

        .guide-stitch:hover {
            border-left-color: var(--color-primary);
        }

        /* ==========================================================================
           Experience Portal (.nexus)
           ========================================================================== */
        .nexus {
            padding: 100px 0;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at top, var(--color-surface) 0%, var(--color-bg) 70%);
            border-top: 1px solid var(--color-border);
        }

        .nexus-bind {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* ==========================================================================
           Footer (.hem)
           ========================================================================== */
        .hem {
            background: #050506;
            padding: 80px 0 40px;
            border-top: 1px solid var(--color-border);
        }

        .seam {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

        .vault-brand {
            flex: 1;
            min-width: 240px;
        }

        .vault-brand .helm-minor {
            color: #fff;
            margin-bottom: 16px;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }

        .vault-links {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .vault-knot {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .vault-helm {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .vault-knot a {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        .vault-knot a:hover {
            color: var(--color-primary);
        }

        .seam-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        /* ==========================================================================
           Responsive Design
           ========================================================================== */
        @media (max-width: 1024px) {
            .lucid-lens-bind {
                width: 100%;
                order: 2; /* Move visual below text on smaller screens */
                padding: 40px;
            }
            .selle-soie-bind {
                width: 100%;
                order: 1;
                padding: 100px 5% 20px;
            }
            .aura {
                min-height: auto;
            }
            .craft-layout {
                flex-direction: column;
            }
            .weave {
                display: none; /* Mobile menu logic omitted for strict HTML/CSS scope, hiding for clean layout */
            }
        }
        
        @media (max-width: 768px) {
            .helm-mega { font-size: 2.25rem; }
            .helm-major { font-size: 1.75rem; }
            .cuir-knot, .guide-grid {
                grid-template-columns: 1fr;
            }
            .tact-knot {
                flex-direction: column;
                width: 100%;
            }
            .tact-knot > * {
                width: 100%;
            }
            .vault-links {
                flex-direction: column;
                gap: 32px;
            }
        }

.reins-brim .reins-mesh{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

.reins-brim{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(9, 10, 12, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.reins-brim .reins-brim-bind{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

.reins-brim .reins-sigil{
            height: 28px;
            display: flex;
            align-items: center;
        }

.reins-brim .reins-sigil img{
            height: 100%;
            object-fit: contain;
        }

.reins-brim .reins-reins{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.reins-brim .reins-weave{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.reins-brim .reins-fil{
            font-size: 0.95rem;
            font-weight: 500;
            color: #8b949e;
            position: relative;
            padding: 8px 0;
        }

.reins-brim .reins-fil:hover, .reins-brim .reins-fil.active{
            color: #38d5ca;
        }

.reins-brim .reins-fil::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #38d5ca;
            transition: width 0.3s ease;
        }

.reins-brim .reins-fil:hover::after, .reins-brim .reins-fil.active::after{
            width: 100%;
        }

@media (max-width: 1024px){.reins-brim .reins-weave{
                display: none; 
            }}

.reins-brim {
    background: rgb(9, 10, 12);
    background-image: none;
}

.seam-hem {
    font-family: var(--font-sans);
    line-height: 1.7;
    word-break: break-word;
    color: var(--color-text-main);
}
.seam-hem,
.seam-hem *,
.seam-hem *::before,
.seam-hem *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.seam-hem .seam-mesh{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

.seam-hem .seam-flex-bind{
            display: flex;
            flex-wrap: wrap;
        }

.seam-hem .seam-helm-minor{
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            white-space: normal;
            margin-bottom: 12px;
        }

.seam-hem .seam-soie-base{
            font-size: 1rem;
            color: #8b949e;
            margin-bottom: 16px;
        }

.seam-hem{
            background: #050506;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.seam-hem .seam-seam{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

.seam-hem .seam-vault-brand{
            flex: 1;
            min-width: 240px;
        }

.seam-hem .seam-vault-brand .seam-helm-minor{
            color: #fff;
            margin-bottom: 16px;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }

.seam-hem .seam-vault-links{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.seam-hem .seam-vault-knot{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.seam-hem .seam-vault-helm{
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

.seam-hem .seam-vault-knot a{
            color: #8b949e;
            font-size: 0.9rem;
        }

.seam-hem .seam-vault-knot a:hover{
            color: #38d5ca;
        }

.seam-hem .seam-seam-bottom{
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 0.85rem;
            color: #8b949e;
        }

@media (max-width: 768px){.seam-hem .seam-vault-links{
                flex-direction: column;
                gap: 32px;
            }}