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

    body {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fafafa;
        color: #111;
        font-family: Georgia, serif;
    }

    .container {
        text-align: center;
    }

    h1 {
        font-size: clamp(3rem, 8vw, 7rem);
        font-weight: 400;
        letter-spacing: -0.04em;
        line-height: 1;
    }

    h2 {
        margin-top: 1rem;
        font-size: clamp(1rem, 2vw, 1.25rem);
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #666;
    }

    footer {
        position: fixed;
        bottom: 30px;
        left: 0;
        width: 100%;
        text-align: center;
    }

    footer p {
        font-size: 0.875rem;
        color: #555;
    }

    footer a {
        color: inherit;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    body {
        cursor: none;
    }

    .cursor {
        position: fixed;
        width: 24px;
        height: 24px;
        background: rgba(17, 17, 17, .08);
        border: 1px solid rgba(17, 17, 17, .2);
        border-radius: 50%;
        backdrop-filter: blur(3px);

        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 9999;

        opacity: 0;
        transition: opacity .2s ease;
    }

    .cursor.visible {
        opacity: 1;
    }

    .btn-portfolio {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 2rem;
        padding: 10px 20px;
        font-family: inherit;
        font-size: 0.8125rem;
        font-weight: 400;
        letter-spacing: 0.08em;
        color: #111;
        background: transparent;
        border: 1px solid #d0d0d0;
        border-radius: 6px;
        text-decoration: none;
        transition: background 0.15s ease, border-color 0.15s ease;
    }

    .btn-portfolio:hover {
        background: #f0f0f0;
        border-color: #aaa;
    }


    a:hover~.cursor {
        width: 40px;
        height: 40px;
    }

    @media (pointer: coarse) {
        .cursor {
            display: none;
        }

        body {
            cursor: auto;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .cursor {
            transition: none;
        }
    }