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

        html, body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #FAFAF8;
        }

        body {
            font-family: 'Syne', sans-serif;
            color: #1a1a1a;
            cursor: none;
        }

        /* Custom cursor dot — visible when not over interactive elements */
        .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: #1a1a1a;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
            mix-blend-mode: difference;
        }

        canvas#peopleCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .lang-switcher {
            position: fixed;
            bottom: 2.5rem;
            right: 2.5rem;
            display: flex;
            gap: 0.8rem;
            z-index: 10;
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
            animation-delay: 1.2s;
        }

        .lang-switcher a {
            text-decoration: none;
            color: #1a1a1a;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.35;
            transition: opacity 0.3s ease;
            cursor: none;
            pointer-events: auto;
        }

        .lang-switcher a:hover {
            opacity: 1;
        }

        .lang-switcher a.active {
            opacity: 0.8;
        }

        .content {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            text-align: center;
            padding: 2rem;
        }

        .hero-name {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(2.8rem, 8vw, 7rem);
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        .hero-tagline {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: clamp(1.1rem, 2.5vw, 1.8rem);
            color: #444;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .hero-sub {
            font-family: 'Syne', sans-serif;
            font-weight: 400;
            font-size: clamp(0.75rem, 1.2vw, 0.95rem);
            color: #888;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            max-width: 500px;
            line-height: 1.6;
        }

        .hero-hint {
            position: fixed;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 0.85rem;
            color: #bbb;
            z-index: 10;
            transition: opacity 1.5s ease;
            pointer-events: none;
        }

        .hero-hint.hidden {
            opacity: 0;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .hero-name {
                font-size: clamp(2rem, 10vw, 3.5rem);
            }

            body {
                cursor: auto;
            }

            .cursor-dot {
                display: none;
            }
        }

        @media (max-width: 480px) {
        }

        /* Entry animations */
        .hero-name, .hero-tagline, .hero-sub {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards;
        }

        .hero-name { animation-delay: 0.3s; }
        .hero-tagline { animation-delay: 0.6s; }
        .hero-sub { animation-delay: 0.9s; }

        .hero-hint {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 2s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Placeholder pages */
        .placeholder-page {
            cursor: auto;
        }

        .placeholder-content {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .placeholder-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 5vw, 4rem);
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .placeholder-tagline {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 1.2rem;
            color: #888;
            margin-bottom: 2rem;
        }

        .placeholder-back {
            font-family: 'Syne', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .placeholder-back:hover {
            opacity: 1;
        }
