:root {
            --primary: #d36e52;
            --primary-dim: rgba(211, 110, 82, 0.15);
            --bg-base: #161514;
            --bg-surface: #1e1d1c;
            --bg-elevated: #282625;
            --border: #363330;
            --text-main: #f0ebe6;
            --text-muted: #99948e;
            --radius: 8px;
            --shadow-base: 0 4px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
            --shadow-hover: 0 12px 28px rgba(0,0,0,0.6), 0 4px 8px rgba(0,0,0,0.4);
            --transition: 0.35s ease;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --shell-width: 1200px;
        }

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

        body {
            font-family: var(--font);
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        /* Nav Header Styles (Inherited) */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(22, 21, 20, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
        }

        .helm {
            max-width: var(--shell-width);
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

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

        .mesh {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            min-width: 0;
        }

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

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

        .tie.active {
            color: var(--primary);
        }

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

        /* Layout & Typography Defaults */
        .tunnel {
            padding-top: 80px; /* Offset for fixed header */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .veil {
            width: 100%;
            max-width: var(--shell-width);
            margin: 0 auto;
            padding: 0 2rem;
            min-width: 0;
        }

        .hash {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .hash-muted {
            color: var(--text-muted);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 1. Hero / Intro Area */
        .portal {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            padding: 6rem 0 4rem;
            background: radial-gradient(circle at 50% 0%, var(--bg-surface), var(--bg-base) 70%);
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

        .portal .veil {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .peak-1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #ffffff;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .portal-hash {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 2.5rem;
            background-color: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius);
            box-shadow: 0 0 20px var(--primary-dim);
            transition: all var(--transition);
            border: 1px solid transparent;
        }

        .pulse:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(211, 110, 82, 0.3);
            background-color: #e47c5f;
        }

        /* 2. Tech Showcase / Acquire Area */
        .nexus {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            padding: 6rem 0;
            background-color: var(--bg-base);
        }

        .split-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .split-hash {
            flex: 1 1 400px;
            min-width: 0;
        }

        .split-lens {
            flex: 1 1 500px;
            min-width: 0;
        }

        .peak-2 {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            white-space: normal;
        }

        .nexus .hash {
            margin-bottom: 3rem;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .pack {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        .pod {
            display: flex;
            flex-wrap: wrap;
            padding: 1.5rem;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-base);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            min-width: 0;
            align-items: flex-start;
        }

        .pod:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(211, 110, 82, 0.3);
        }

        .glyph {
            width: 48px;
            height: 48px;
            border-radius: var(--radius);
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            border: 1px solid var(--border);
            color: var(--primary);
        }

        .glyph svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .pod-veil {
            flex: 1;
            min-width: 0;
        }

        .peak-3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1.4;
            white-space: normal;
        }

        .lens-veil {
            background: var(--bg-elevated);
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-base), inset 0 0 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .lens-veil::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), transparent);
            opacity: 0.5;
        }

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

        /* 3. Policy Info / Context Area */
        .zone {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            padding: 6rem 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border);
        }

        .zone .veil {
            max-width: 900px;
        }

        .zone .peak-2 {
            text-align: center;
            margin-bottom: 1rem;
        }

        .zone-intro {
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.15rem;
            color: var(--text-muted);
        }

        .policy-pack {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            min-width: 0;
        }

        .policy-vein {
            display: flex;
            flex-direction: column;
            min-width: 0;
            padding-left: 1.5rem;
            border-left: 2px solid var(--border);
            transition: border-color var(--transition);
        }

        .policy-vein:hover {
            border-left-color: var(--primary);
        }

        .policy-vein dt {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .policy-vein dd {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-left: 0;
        }

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

        .anchor {
            max-width: var(--shell-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .root-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .root-mesh {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .root-tie {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .root-tie:hover {
            color: #ffffff;
        }

        .root-hash {
            width: 100%;
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .split-layout {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .helm {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }
            .mesh {
                justify-content: center;
                gap: 1rem;
            }
            .portal {
                padding: 4rem 0 3rem;
            }
            .split-layout {
                flex-direction: column;
            }
            .split-hash, .split-lens {
                width: 100%;
                flex: none;
            }
            .nexus, .zone {
                padding: 4rem 0;
            }
            .anchor {
                flex-direction: column;
                text-align: center;
            }
            .root-mesh {
                justify-content: center;
            }
        }

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

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

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

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

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

.helm-crown a.helm-tie {
    --aisite-shell-nav-padding: 0.5rem 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-crown a.helm-tie,
.helm-crown a.helm-tie:hover,
.helm-crown a.helm-tie:focus,
.helm-crown a.helm-tie:active,
.helm-crown a.helm-tie.active,
.helm-crown a.helm-tie[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-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(22, 21, 20, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #363330;
        }

.helm-crown .helm-helm{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 5vw;
        }

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

.helm-crown .helm-crest{
            flex-shrink: 0;
            height: 32px;
            display: flex;
            align-items: center;
        }

.helm-crown .helm-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.helm-crown .helm-mesh{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.helm-crown .helm-mesh > *{ min-width: 0; }

.helm-crown .helm-tie{
            font-size: 0.95rem;
            font-weight: 500;
            color: #99948e;
            padding: 0.5rem 0;
            position: relative;
        }

.helm-crown .helm-tie:hover{
            color: #f0ebe6;
        }

.helm-crown .helm-tie.active{
            color: #d36e52;
        }

.helm-crown .helm-tie.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d36e52;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-crown .helm-mesh{
                display: none; 
            }}

.helm-crown {
    background: rgb(22, 21, 20);
    background-image: none;
}

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

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

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

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

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

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

.base-sole .base-tie{
            font-size: 0.95rem;
            font-weight: 500;
            color: #99948e;
            padding: 0.5rem 0;
            position: relative;
        }

.base-sole .base-tie:hover{
            color: #f0ebe6;
        }

.base-sole .base-tie.active{
            color: #d36e52;
        }

.base-sole .base-tie.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d36e52;
            border-radius: 2px;
        }

.base-sole{
            background-color: #1e1d1c;
            border-top: 1px solid #363330;
            padding: 4rem 5vw;
            color: #99948e;
            font-size: 0.9rem;
        }

.base-sole .base-base{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

.base-sole .base-base > *{ min-width: 0; }

.base-sole .base-root{
            font-size: 1.2rem;
            font-weight: 700;
            color: #f0ebe6;
            letter-spacing: 0.5px;
        }

.base-sole .base-anchor-pack{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.base-sole .base-anchor-pack > *{ min-width: 0; }

@media (max-width: 768px){.base-sole .base-base{
                flex-direction: column;
                align-items: flex-start;
            }}