:root {
            --accent: #df3f3f;
            --dark: #0a0a0a;
            --light: #fdfdfd;
            --gray: #f4f4f4;
            --text: #1a1a1a;
            --radius: 14px;
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
            --transit: 0.15s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text);
            background-color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* Vortex - Navigation */
        .vortex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .orbit {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

        .sigil img {
            height: 32px;
            width: auto;
        }

        .strand {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            list-style: none;
        }

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

        .tether:hover, .tether.active {
            color: var(--accent);
        }

        .tether.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
        }

        /* Matrix - Main Wrapper */
        .matrix {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Zenith - Hero (Editorial Style) */
        .zenith {
            padding: 8rem 2rem 6rem;
            text-align: center;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 0;
        }

        .apex-huge {
            font-size: clamp(2.5rem, 7vw, 5.5rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark);
            margin-bottom: 2rem;
            white-space: normal;
            word-break: break-word;
        }

        .echo-lead {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #666;
            max-width: 800px;
            margin-bottom: 3rem;
            word-break: break-word;
        }

        .pulse-plexus {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .pulse {
            padding: 1.2rem 2.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
        }

        .pulse-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 15px 30px rgba(223, 63, 63, 0.2);
        }

        .pulse-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(223, 63, 63, 0.3);
        }

        /* Flare - Features (Asymmetric) */
        .flare {
            padding: 6rem 2rem;
            background: var(--gray);
            width: 100%;
        }

        .nexus-wide {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .vault {
            background: white;
            padding: 3.5rem;
            border-radius: var(--radius);
            transition: var(--transit);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        .vault:nth-child(even) {
            transform: translateY(30px);
        }

        .glyph-box {
            width: 60px;
            height: 60px;
            background: rgba(223, 63, 63, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .apex-sub {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
        }

        .echo-detail {
            color: #555;
            font-size: 1.05rem;
            word-break: break-word;
        }

        /* Portal - Technology Showcase */
        .portal {
            padding: 8rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .veil-media {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .lens-showcase {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.1);
        }

        .veil-echo {
            flex: 1;
            min-width: 320px;
        }

        .ribbon-tag {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(223, 63, 63, 0.1);
            color: var(--accent);
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        /* Aura - CTA */
        .aura {
            padding: 6rem 2rem;
            text-align: center;
            background: var(--dark);
            color: white;
            width: 100%;
        }

        .apex-light {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .echo-muted {
            color: #aaa;
            margin-bottom: 3rem;
            font-size: 1.2rem;
        }

        /* Strata - Footer */
        .strata {
            background: #fff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .abyss {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

        .datum-brand {
            flex: 1;
            min-width: 250px;
        }

        .datum-links {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

        .plexus-strand {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .plexus-strand h4 {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .bead-depth a {
            text-decoration: none;
            color: #666;
            transition: var(--transit);
        }

        .bead-depth a:hover {
            color: var(--accent);
        }

        .datum-copyright {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            width: 100%;
        }

        /* SVG Glyphs */
        .glyph-svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        @media (max-width: 768px) {
            .vault:nth-child(even) {
                transform: translateY(0);
            }
            .strand {
                display: none; /* Mobile menu logic omitted for brevity, would usually use a toggle */
            }
            .apex-huge {
                font-size: 2.8rem;
            }
            .orbit {
                justify-content: center;
            }
            .portal {
                padding: 4rem 1.5rem;
            }
        }

.vortex-vortex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text);
}
.vortex-vortex,
.vortex-vortex *,
.vortex-vortex *::before,
.vortex-vortex *::after {
    box-sizing: border-box;
}

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

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

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

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

.vortex-vortex a.vortex-tether {
    --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;
}

.vortex-vortex a.vortex-tether,
.vortex-vortex a.vortex-tether:hover,
.vortex-vortex a.vortex-tether:focus,
.vortex-vortex a.vortex-tether:active,
.vortex-vortex a.vortex-tether.active,
.vortex-vortex a.vortex-tether[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);
}

.vortex-vortex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.vortex-vortex .vortex-orbit{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

.vortex-vortex .vortex-sigil img{
            height: 32px;
            width: auto;
        }

.vortex-vortex .vortex-strand{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            list-style: none;
        }

.vortex-vortex .vortex-tether{
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.15s ease;
            position: relative;
        }

.vortex-vortex .vortex-tether:hover, .vortex-vortex .vortex-tether.active{
            color: #df3f3f;
        }

.vortex-vortex .vortex-tether.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #df3f3f;
        }

@media (max-width: 768px){.vortex-vortex .vortex-strand{
                display: none; 
            }

.vortex-vortex .vortex-orbit{
                justify-content: center;
            }}

.vortex-vortex {
    background: rgb(255, 255, 255);
    background-image: none;
}

.datum-strata {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text);
}
.datum-strata,
.datum-strata *,
.datum-strata *::before,
.datum-strata *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.datum-strata{
            background: #fff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.datum-strata .datum-abyss{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

.datum-strata .datum-datum-brand{
            flex: 1;
            min-width: 250px;
        }

.datum-strata .datum-datum-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.datum-strata .datum-plexus-strand{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.datum-strata .datum-plexus-strand h4{
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

.datum-strata .datum-bead-depth a{
            text-decoration: none;
            color: #666;
            transition: 0.15s ease;
        }

.datum-strata .datum-bead-depth a:hover{
            color: #df3f3f;
        }

.datum-strata .datum-datum-copyright{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            width: 100%;
        }