        :root {
            --teal: #44A194;
            --plum: #612D53;
            --cream: #FEFFD3;
            --violet: #36064D;
        }

        body {
            background-color: var(--cream);
            color: var(--violet);
            font-family: 'PT Serif', serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-mono-tech { font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; }
        .font-serif-body { font-family: 'PT Serif', serif; }

        /* Navigation & Marquee */
        .marquee-container {
            background: var(--teal);
            height: 80px;
            overflow: hidden;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
            color: white;
            font-size: 0.8rem;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Hero Layered Animation */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, var(--violet) 0%, #1a0326 100%);
        }
        .hero-blob {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s infinite alternate;
        }
        @keyframes float {
            0% { transform: translate(-10%, -10%) scale(1); }
            100% { transform: translate(20%, 30%) scale(1.2); }
        }

        /* Innovation Waves (Rotating Cards) */
        .wave-card {
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        .wave-card:nth-child(odd) { transform: rotate(-2deg); }
        .wave-card:nth-child(even) { transform: rotate(2deg); }
        .wave-card:hover { transform: rotate(0deg) translateY(-15px) scale(1.02); z-index: 10; }

        /* Feature Lab Diagonal Splits */
        .diag-split {
            position: relative;
            height: 600px;
            overflow: hidden;
            display: flex;
        }
        .diag-left {
            width: 50%;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            transition: width 0.8s ease;
        }
        .diag-right {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
        }

        /* Horizontal Scroll Timeline */
        .timeline-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 4rem 2rem;
            gap: 2rem;
        }
        .timeline-item {
            flex: 0 0 400px;
            scroll-snap-align: start;
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-left: 2px solid white;
        }
        .timeline-container::-webkit-scrollbar { height: 6px; }
        .timeline-container::-webkit-scrollbar-thumb { background: white; border-radius: 10px; }

        /* Asymmetric Grid */
        .asym-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 200px;
            gap: 1.5rem;
        }
        .tile-l { grid-column: span 3; grid-row: span 2; }
        .tile-m { grid-column: span 2; grid-row: span 2; }
        .tile-s { grid-column: span 2; grid-row: span 1; }

        /* Views */
        .view { display: none; }
        .view.active { display: block; animation: fadeIn 0.8s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* CTA Button */
        .cta-btn {
            background: var(--plum);
            color: var(--cream);
            padding: 1rem 2rem;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .cta-btn:hover {
            border-color: var(--teal);
            transform: translateY(-3px);
        }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(54, 6, 77, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            backdrop-blur: 10px;
        }

        /* Responsive Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

/* Smaller devices: reduce font size for readability */
@media (max-width: 640px) {
    .marquee-content {
        font-size: 0.7rem;
    }
}
    