/* Custom Cursor Spotlight */
#cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease-out;
    opacity: 0;
}

body.has-cursor #cursor-spotlight {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Hero Text Enhancement */
.hero-title {
    font-family: 'Roboto Flex', var(--font-heading);
    font-size: 86px;
    font-variation-settings: "wdth" 25, "wght" 100;
    letter-spacing: normal;
    line-height: 0.95;
    margin: 0 0 16px 0;
    color: #111827;
    /* Default Dark */
    transition: font-variation-settings 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    cursor: default;
    /* Let custom cursor take over visually */
}

/* Hover State: Expand & Morandi Blue */
.hero-title:hover {
    font-variation-settings: "wdth" 120, "wght" 800;
    /* Smooth expand via variable font axes */
    color: #7D9CB8;
    /* Morandi Blue */
}