        :root {
            --base: #331D2C;
            --accent: #DEDEA7;
            --cream: #FFF2CC;
            --neon: #D800A6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: crosshair;
        }

        body {
            background-color: var(--base);
            color: var(--cream);
            font-family: 'Original Surfer', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- HEADER & NAVIGATION --- */
        .marquee-bar {
            background: var(--neon);
            color: var(--cream);
            height: 40px;
            display: flex;
            align-items: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: 0 5px 15px rgba(216, 0, 166, 0.3);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
            filter: drop-shadow(0 0 2px var(--cream));
        }

        .marquee-content span {
            padding: 0 40px;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .main-header {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 900;
            pointer-events: none;
        }

        .logo-area {
            pointer-events: auto;
            color: var(--accent);
            text-shadow: 2px 2px var(--neon);
            transition: transform 0.3s ease;
        }

        .logo-area:hover {
            transform: skew(-5deg) scale(1.05);
        }

        .nav-stack {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            pointer-events: auto;
        }

        .nav-item {
            color: var(--accent);
            text-decoration: none;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            opacity: 0;
            transform: translateY(-20px);
            animation: navFadeIn 0.8s forwards;
        }

        @keyframes navFadeIn {
            to { opacity: 1; transform: translateY(0); }
        }

        .nav-item:hover {
            color: var(--neon);
            padding-right: 15px;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: var(--neon);
            transition: width 0.3s ease;
        }

        .nav-item:hover::before {
            width: 100%;
        }

        .nav-1 { animation-delay: 0.2s; }
        .nav-2 { animation-delay: 0.3s; margin-right: 20px; }
        .nav-3 { animation-delay: 0.4s; margin-right: 40px; }
        .nav-4 { animation-delay: 0.5s; margin-right: 60px; }
        .nav-5 { animation-delay: 0.6s; margin-right: 80px; }

        /* --- HERO SECTION --- */
        .hero-section {
            min-h-screen;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 200px 5% 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-anim {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, #4a2840 0%, transparent 70%);
            z-index: -1;
            animation: pulseBg 10s infinite alternate;
        }

        @keyframes pulseBg {
            from { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
            to { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
        }

        .hero-visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 800px;
        }

        .hero-main-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 60px 5px 60px 5px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.6);
            animation: imageFloat 6s ease-in-out infinite;
        }

        .hero-floating-card {
            position: absolute;
            top: -40px;
            left: -60px;
            width: 220px;
            height: 220px;
            background: var(--cream);
            border: 8px solid var(--base);
            border-radius: 20px;
            transform: rotate(-12deg);
            overflow: hidden;
            box-shadow: 20px 20px 0px var(--neon);
            transition: all 0.5s ease;
        }

        .hero-floating-card:hover {
            transform: rotate(0deg) scale(1.1);
            z-index: 50;
        }

        @keyframes imageFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* --- SCATTERED PANELS --- */
        .scatter-container {
            position: relative;
            min-height: 1200px;
            padding: 100px 0;
        }

        .panel {
            background: var(--cream);
            color: var(--base);
            padding: 40px;
            border-radius: 40px;
            width: 320px;
            position: absolute;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .panel:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 20px 60px var(--neon);
            color: var(--neon);
        }

        .panel i { font-size: 3rem; margin-bottom: 1rem; color: var(--neon); }

        /* --- ORBIT SYSTEM --- */
        .orbit-section {
            padding: 150px 0;
            background: radial-gradient(circle at center, #3d2235, var(--base));
        }

        .orbit-container {
            width: 600px;
            height: 600px;
            position: relative;
            margin: 0 auto;
            border: 1px dashed rgba(222, 234, 167, 0.2);
            border-radius: 50%;
        }

        .orbit-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: var(--neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 80px var(--neon);
            z-index: 20;
            text-align: center;
        }

        .orbit-node {
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--cream);
            color: var(--base);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 12px;
            padding: 10px;
            transition: 0.5s;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .orbit-node:hover {
            transform: scale(1.5);
            z-index: 100;
            background: var(--accent);
        }

        /* --- RIBBON FLOW --- */
        .ribbon-section {
            background: var(--accent);
            color: var(--base);
            padding: 100px 0;
            overflow: hidden;
        }

        .ribbon-container {
            display: flex;
            gap: 40px;
            padding: 50px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .ribbon-container::-webkit-scrollbar { display: none; }

        .ribbon-card {
            min-width: 400px;
            background: var(--cream);
            padding: 60px;
            border-radius: 80px 0 80px 0;
            transition: 0.5s;
            border: 2px solid transparent;
        }

        .ribbon-card:hover {
            border-color: var(--neon);
            transform: skew(-2deg) translateY(-10px);
        }

        /* --- CTA --- */
        .cta-section {
            background: var(--neon);
            padding: 150px 5%;
            text-align: center;
        }

        .pulse-btn {
            background: var(--base);
            color: var(--cream);
            padding: 25px 60px;
            border-radius: 100px;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            border: none;
            transition: 0.4s;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(51, 29, 44, 0.7); }
            70% { box-shadow: 0 0 0 30px rgba(51, 29, 44, 0); }
            100% { box-shadow: 0 0 0 0 rgba(51, 29, 44, 0); }
        }

        .pulse-btn:hover {
            transform: scale(1.1) rotate(-2deg);
            background: var(--accent);
            color: var(--base);
        }

        /* --- MODAL --- */
        #modal {
            position: fixed;
            inset: 0;
            background: rgba(51, 29, 44, 0.95);
            backdrop-filter: blur(15px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-body {
            background: var(--cream);
            color: var(--base);
            max-width: 700px;
            width: 100%;
            padding: 60px;
            border-radius: 40px;
            position: relative;
        }

        /* Pages */
        .page { display: none; }
        .page.active { display: block; }
    