        :root {
            --primary: #0f1421;
            --accent: #86ffb2;
            --bg-soft: #8fc9ff;
            --secondary: #11adfb;
            --text-main: #b68989;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-soft);
            color: var(--text-main);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .font-outfit {
            font-family: 'Outfit', sans-serif;
        }

        /* Animated Hero Background */
        .hero-bg {
            background: radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.1;
            animation: float-slow 20s infinite linear;
        }

        @keyframes float-slow {
            from { transform: translateY(100vh) scale(1); }
            to { transform: translateY(-10vh) scale(1.5); }
        }

        /* Navigation */
        header.glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        header.scrolled {
            padding: 12px 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
        }

        /* Section Routing */
        .page-view { display: none; }
        .page-view.active { display: block; animation: slideUp 0.6s ease-out forwards; }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hover Cards */
        .editorial-card {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .editorial-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 40px 60px -15px rgba(15, 23, 42, 0.15);
        }

        /* Timeline */
        .timeline-line {
            width: 2px;
            background: #E2E8F0;
            position: absolute;
            top: 0; bottom: 0; left: 16px;
        }
        .timeline-progress {
            width: 2px;
            background: var(--accent);
            position: absolute;
            top: 0; left: 16px;
            height: 0%;
            transition: height 1s ease;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-soft); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }

        /* Pulse */
        .pulse-green {
            animation: pulse-green 2s infinite;
        }
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .filter-pill.active {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
/* Improve container spacing */
section {
    width: 100%;
}

/* Better typography scaling */
h1 {
    font-size: clamp(2.5rem, 6vw, 6rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

/* Responsive cards */
.editorial-card {
    border-radius: 24px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .hero-bg {
        padding-top: 100px;
    }

    .editorial-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    nav {
        display: none;
    }
}