:root {
            --primary: #f73c6b;
            --primary-soft: #ffedf1;
            --dark: #1a1a1c;
            --gray: #666666;
            --light: #f9fafb;
            --radius: 20px;
            --transition: 0.25s ease;
        }

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

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

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

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

        .glyph {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .glyph img {
            height: 100%;
            width: auto;
        }

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

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

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

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

        /* Zenith Area - Hero (Vertical Stack Prototype) */
        .zenith {
            width: 100%;
            padding: 6rem 2rem 4rem;
            text-align: center;
            background: radial-gradient(circle at top right, var(--primary-soft), transparent);
        }

        .swarm {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .crest-mega {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            color: var(--dark);
            max-width: 850px;
        }

        .echo-lead {
            font-size: 1.25rem;
            color: var(--gray);
            max-width: 700px;
            margin-top: 1.5rem;
        }

        .jolt-primary {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 1.2rem 2.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 2.5rem;
            box-shadow: 0 10px 25px rgba(247, 60, 107, 0.3);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .jolt-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(247, 60, 107, 0.4);
        }

        .veil-glare {
            width: 100%;
            max-width: 1100px;
            border-radius: var(--radius);
            box-shadow: 0 40px 100px rgba(0,0,0,0.1);
            overflow: hidden;
            border: 8px solid white;
        }

        .veil-glare img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        /* Matrix Area - AI Features */
        .matrix {
            padding: 8rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .heel {
            text-align: center;
            margin-bottom: 5rem;
        }

        .crest-sub {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

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

        .shard-glass:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        }

        .pixel-box {
            width: 64px;
            height: 64px;
            background: var(--primary-soft);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        /* Vault Area - Privacy */
        .vault {
            background: var(--dark);
            color: white;
            padding: 10rem 2rem;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .swarm-split {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 5rem;
        }

        .optic-swarm {
            flex: 1;
            min-width: 320px;
        }

        .optic-visual {
            flex: 1;
            min-width: 320px;
        }

        .veil-frame {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .veil-frame img {
            width: 100%;
            display: block;
        }

        /* Shell Area - Personalization */
        .swarm {
            padding: 8rem 2rem;
            background: white;
        }

        .nexus-wrap {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            flex-direction: row-reverse;
        }

        /* Beacon Area - Resources */
        .beacon {
            padding: 6rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .pod-blog {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 4rem;
        }

        .optic-post {
            flex: 1;
            min-width: 380px;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .veil-blog {
            height: 240px;
            overflow: hidden;
        }

        .veil-blog img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .optic-post:hover img {
            transform: scale(1.05);
        }

        .echo-block {
            padding: 2rem;
        }

        /* Basis Area - Pathways */
        .basis {
            background: #f1f3f5;
            padding: 6rem 2rem;
        }

        .nexus-path {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

        .shard-path {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }

        .shard-path:hover {
            border-bottom-color: var(--primary);
            transform: translateY(-5px);
        }

        /* Abyss Area - Footer */
        .abyss {
            background: white;
            padding: 5rem 2rem 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

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

        .echo-copyright {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 4rem;
            text-align: center;
            width: 100%;
        }

        .brow-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .transit { flex-direction: column; gap: 1.5rem; text-align: center; }
            .crest-mega { font-size: 2.8rem; }
            .matrix, .vault, .swarm, .beacon { padding: 4rem 1.5rem; }
            .nexus-grid { grid-template-columns: 1fr; }
            .swarm-split, .nexus-wrap { flex-direction: column; text-align: center; }
        }

        svg { fill: currentColor; }

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

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

.vortex-vortex .vortex-glyph{
            height: 40px;
            display: flex;
            align-items: center;
        }

.vortex-vortex .vortex-glyph img{
            height: 100%;
            width: auto;
        }

.vortex-vortex .vortex-ribbon{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

.vortex-vortex .vortex-wire:hover, .vortex-vortex .vortex-wire.active{
            color: #f73c6b;
        }

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

@media (max-width: 768px){.vortex-vortex .vortex-transit{ flex-direction: column; gap: 1.5rem; text-align: center; }}

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

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

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

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

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

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

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

.abyss-abyss .abyss-ribbon{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

.abyss-abyss .abyss-wire{
            text-decoration: none;
            color: #1a1a1c;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.25s ease;
            position: relative;
        }

.abyss-abyss .abyss-wire:hover, .abyss-abyss .abyss-wire.active{
            color: #f73c6b;
        }

.abyss-abyss .abyss-wire.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #f73c6b;
            border-radius: 2px;
        }

.abyss-abyss{
            background: white;
            padding: 5rem 2rem 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

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

.abyss-abyss .abyss-echo-copyright{
            color: #666666;
            font-size: 0.9rem;
            margin-top: 4rem;
            text-align: center;
            width: 100%;
        }