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

body {
    /* Define TWO separate variables now */
    --bg-split-pos: 100%;
    --logo-clip-pos: 100%;

    height: 100vh;
    overflow: hidden;
    /* REMOVED: cursor: none; -- The cursor is now visible! */

    /* The background now uses the dedicated background variable */
    background: linear-gradient(to right, #000000 var(--bg-split-pos), #ffffff var(--bg-split-pos));

    display: grid;
    place-items: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;
}

.logo-stack {
    position: relative;
}

.logo-stack img {
    display: block;
    max-width: 500px;
    width: 90vw;
    height: auto;
}

.logo-top {
    position: absolute;
    top: 0;
    left: 0;

    /* The clip-path now uses the dedicated logo variable */
    clip-path: inset(0 calc(100% - var(--logo-clip-pos)) 0 0);
}

.coming-soon {
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    mix-blend-mode: difference;
}

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