/* =========================================
   iVRA BLOOM - LIQUID AESTHETIC CSS
   ========================================= */

::-webkit-scrollbar { display: none; }
* { -ms-overflow-style: none; scrollbar-width: none; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: transparent; 
    cursor: none; 
}

a, button, input {
    cursor: none; 
}

/* ───────────────────────────────────────
   Custom Context Cursor
   ─────────────────────────────────────── */
body.cursor-active #cursor-follower {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
body.cursor-active #cursor-text {
    opacity: 1;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* ───────────────────────────────────────
   Hero & Condensation Overlays
   ─────────────────────────────────────── */
.hero-title-words {
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

/* ───────────────────────────────────────
   The 12 Essences Grid UI
   ─────────────────────────────────────── */
.essence-row {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.essence-row::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -50vw; right: -50vw; /* Spans full viewport width */
    background-color: transparent;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    pointer-events: none;
}
.essence-row:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.03);
}

/* ───────────────────────────────────────
   Before/After Comparison Slider
   ─────────────────────────────────────── */
#ba-after-clip {
    transition: clip-path 0.05s linear;
}
#ba-divider {
    transition: left 0.05s linear;
}

/* Magnetic Utility */
.magnetic-btn {
    display: inline-block;
}
