/* =========================================
   PSYCLONE VFX STUDIO | MASTER STYLESHEET
   ========================================= */

:root {
    --bg-color: #000000;
    --text-main: #ffffff;
    --text-dim: #555555;
    --blur-strength: 20px;
    --vfx-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- 1. GLOBAL RESET & SCROLL FIX --- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* This alone stops horizontal scrolling */
    font-family: 'Inter', sans-serif;
    color: white;
    width: 100%;
    min-height: 100vh;
}

section {
    scroll-margin-top: 100px;
}

/* --- 2. BULLETPROOF LOADING LOCK --- */
/* Kills the "ghost scrollbar" by locking BOTH root layers simultaneously */
html.loading-lock, 
body.loading-lock {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}

/* --- 3. NAVIGATION --- */
.studio-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    mix-blend-mode: difference;
}

.brand {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(var(--blur-strength));
    animation: vfx-entrance 1.2s var(--vfx-ease) forwards;
}

.brand h1 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.tag-wrapper {
    display: inline-block;
    height: 1.5rem;
    overflow: hidden;
    margin-left: 8px;
    vertical-align: bottom;
}

.vfx-tag-list {
    display: flex;
    flex-direction: column;
    animation: slide-text 6s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

.vfx-tag-list span {
    font-weight: 200;
    color: #ffffff;
    opacity: 0.6;
    height: 1.5rem;
    display: block;
    font-size: 1.0rem;
    line-height: 1.6rem;
}

.nav-content { display: flex; gap: 80px; }
.nav-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px; text-align: right;
}
.nav-list li {
    opacity: 0; transform: translateY(15px); filter: blur(5px);
    animation: item-reveal 0.8s var(--vfx-ease) forwards;
}
.nav-list li:nth-child(1) { animation-delay: 0.4s; }
.nav-list li:nth-child(2) { animation-delay: 0.5s; }
.nav-list li:nth-child(3) { animation-delay: 0.6s; }
.nav-list li:nth-child(4) { animation-delay: 0.7s; }
.nav-list a { text-decoration: none; color: #ffffff; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }

/* --- ACTION PILL (Cleaned & Consolidated) --- */
.action-pill {
    cursor: pointer !important; 
    border: 1px solid #ffffff; 
    padding: 4px 28px;
    border-radius: 100px; 
    height: fit-content; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    opacity: 0;
    transform: scale(0.8); 
    animation: pill-pop 1s var(--vfx-ease) 0.9s forwards;
    transition: transform 0.4s var(--vfx-ease), background 0.4s var(--vfx-ease);
    z-index: 1001;
}

.action-pill:hover {
    background: #fff;
    transform: scale(1.1);
}

.action-pill .plus { 
    color: white; 
    font-size: 1.2rem; 
    transition: color 0.4s var(--vfx-ease);
}

.action-pill:hover .plus {
    color: #000;
}

/* --- 4. HERO VIDEO --- */
.hero-video-container { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* --- 5. MAIN CONTENT & REVEALS --- */
main { position: relative; background-color: var(--bg-color); padding: 100px 60px; z-index: 10; }

.reveal { opacity: 0; filter: blur(10px); transition: all 1.2s var(--vfx-ease); }
.slide-in-right { text-align: right; transform: translateX(100px); }
.slide-in-left { transform: translateX(-100px); }
.slide-in-bottom { transform: translateY(100px); }
.reveal.active { opacity: 1; transform: translate(0, 0); filter: blur(0); }

.detail-section { display: flex; justify-content: flex-end; width: 100%; padding-top: 50px; }
.detail-title { font-size: 1.8rem; font-weight: 700; color: #ffffff; margin: 0; letter-spacing: -0.5px; }
.detail-subtitle { font-size: 1.6rem; font-weight: 400; color: rgba(255, 255, 255, 0.9); margin: 5px 0 0 0; letter-spacing: -0.2px; }

/* --- 6. ABOUT SECTION --- */
.about-fullscreen { min-height: 100vh; display: flex; align-items: center; background-color: var(--bg-color); padding: 0 60px; box-sizing: border-box; }
.about-inner { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; }
.about-flex-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; }
.about-content { flex: 1.2; }

.about-p {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--text-dim);
    margin: 0; font-weight: 400; letter-spacing: -1.5px;
    display: flex; flex-wrap: wrap; align-items: baseline;
}

.white-bold { color: #fff; font-weight: 700; margin: 0 8px; }

.word-wrapper {
    display: inline-grid;
    position: relative;
    overflow: hidden;
    vertical-align: baseline;
    padding: 15px 12px;
    margin: -15px 10px;
}

.ghost { visibility: hidden; grid-area: 1/1; font-weight: 700; white-space: nowrap; }

.word-anim {
    grid-area: 1/1; color: #fff; font-weight: 700; white-space: nowrap;
    opacity: 0; transform: translateY(50%); filter: blur(12px);
    animation: psycloneElite 9s var(--vfx-ease) infinite;
}

.word-anim:nth-child(2) { animation-delay: 0s; }
.word-anim:nth-child(3) { animation-delay: 3s; }
.word-anim:nth-child(4) { animation-delay: 6s; }

.word-anim.delay:nth-child(2) { animation-delay: 1.5s; }
.word-anim.delay:nth-child(3) { animation-delay: 4.5s; }
.word-anim.delay:nth-child(4) { animation-delay: 7.5s; }

@keyframes psycloneElite {
    0% { opacity: 0; transform: translateY(50%); filter: blur(12px); }
    12%, 33% { opacity: 1; transform: translateY(0); filter: blur(0); }
    45%, 100% { opacity: 0; transform: translateY(-50%); filter: blur(12px); }
}

/* --- 7. DYNAMIC GRID --- */
.grid-sidebar { flex: 0.8; min-width: 400px; }
.root-element { background: none; border-radius: 16px; font-family: 'DM Sans',sans-serif; height: 500px; overflow: hidden; }
.grid-internal { position: relative; width: 100%; height: 100%; }
.cell { position: absolute; overflow: hidden; border-radius: 16px; }
.card { position: absolute; inset: 0; border-radius: 16px; display: flex; align-items: flex-end; justify-content: flex-end; overflow: hidden; will-change: transform; }

.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 85%, rgba(0,0,0,0.5) 0%, transparent 60%); pointer-events: none; z-index: 2; }
.card .lbl { position: absolute; top: 11px; left: 13px; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.8); line-height: 1.5; z-index: 3; text-align: left; }
.card .num { font-weight: 600; color: #fff; line-height: 1; padding: 8px 14px; letter-spacing: -2px; z-index: 3; user-select: none; }

.tag-label { font-size: 2.2rem; color: rgb(255, 255, 255); letter-spacing: 10px; text-transform: lowercase; }
.closing { align-self: flex-end; }

/* Global Keyframes */
@keyframes slide-text { 0%, 20% { transform: translateY(0); } 30%, 50% { transform: translateY(-1.5rem); } 60%, 80% { transform: translateY(-3rem); } 90%, 100% { transform: translateY(0); } }
@keyframes vfx-entrance { to { opacity: 1; transform: translateX(0); filter: blur(0); } }
@keyframes item-reveal { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes pill-pop { to { opacity: 1; transform: scale(1); } }

/* --- 8. FEATURED SLIDER --- */
.work-slider-section { background-color: var(--bg-color); padding: 100px 60px; display: flex; flex-direction: column; gap: 2rem; overflow: hidden; }
.slider-window { width: 100%; position: relative; overflow: hidden; }
.slider-track { display: flex; align-items: center; will-change: transform; }
.slide { min-width: 60vw; padding: 0 15px; box-sizing: border-box; transition: opacity 0.8s var(--vfx-ease), transform 0.8s var(--vfx-ease); opacity: 0.3; transform: scale(0.9); }
.slide.active { opacity: 1; transform: scale(1); }
.slide video { width: 100%; display: block; border-radius: 8px; background: #111; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.dot-slider { width: 6px; height: 6px; background: rgba(255,255,255,0.2); border-radius: 50%; transition: all 0.3s ease; }
.dot-slider.active { background: #fff; transform: scale(1.5); }
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 100; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.nav-arrow:hover { background: rgba(255,255,255,0.2); }
.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

/* --- 9. SPATIAL ARCHIVE --- */
.spatial-archive-section { padding: 100px 60px; display: flex; flex-direction: column; perspective: 2000px; background-color: #000; }
.archive-tag-label { font-size: 2.2rem; color: #fff; letter-spacing: 10px; text-transform: lowercase; margin-bottom: 40px; }
.archive-tag-label.archive-closing { align-self: flex-end; margin-top: 40px; }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 100px 60px; padding: 80px 0; transform-style: preserve-3d; transition: transform 0.1s ease-out; }
@media (min-width: 901px) { .editorial-grid > .work-item:nth-child(even) { margin-top: 150px; } }
.work-item { position: relative; cursor: pointer; transform-style: preserve-3d; }
.archive-video-wrapper { width: 100%; aspect-ratio: 16/9; background: #111; overflow: hidden; position: relative; transition: transform 0.7s var(--vfx-ease); }
.archive-video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity 1s var(--vfx-ease); }
.work-item:hover .archive-video-wrapper { transform: translateZ(80px); box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.editorial-grid:has(.work-item:hover) .work-item:not(:hover) { filter: blur(5px) opacity(0.4); }

/* --- 10. PORTAL / MODAL --- */
.archive-video-portal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; z-index: 99999; transition: opacity 0.5s var(--vfx-ease); }
.archive-video-portal.active { opacity: 1; pointer-events: all; }
.archive-video-stage { position: relative; width: 90%; max-width: 1200px; transform: scale(0.9); transition: transform 0.6s var(--vfx-ease); box-shadow: 0 50px 100px rgba(0,0,0,0.8); background: #000; }
.archive-video-portal.active .archive-video-stage { transform: scale(1); }
.expanded-video { width: 100%; display: block; }
.archive-progress-bar { height: 100%; width: 0%; background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.progress-wrap { height: 4px; width: 100%; background: rgba(255,255,255,0.1); cursor: pointer; }
.video-controls-overlay { position: absolute; bottom: 20px; right: 20px; display: flex; gap: 10px; z-index: 10; }
.circle-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; width: 44px; height: 44px; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.circle-btn svg { width: 20px; height: 20px; }
.video-footer-label { color: rgba(255,255,255,0.4); font-size: 10px; text-align: center; margin-top: 20px; letter-spacing: 2px; }

/* --- 11. INQUIRY FORM --- */
.contact-page { min-height: 100vh; padding: 100px 0; display: flex; justify-content: center; }
.contact-container { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; max-width: 1400px; width: 100%; }
.contact-headline { font-size: clamp(1.5rem, 3.5vw, 2.8rem); line-height: 1.1; font-weight: 700; margin-bottom: 50px; color: #fff; letter-spacing: -1px; text-transform: lowercase; }
.detail-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 45px; }
.detail-group .label { font-size: 0.7rem; letter-spacing: 4px; color: var(--text-dim); font-weight: 800; }
.detail-link { font-size: 1.1rem; text-decoration: none; color: #fff; transition: opacity 0.3s var(--vfx-ease); }
.detail-link:hover { opacity: 0.5; }
.vfx-form { display: flex; flex-direction: column; gap: 50px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vfx-form .input-group { display: flex; flex-direction: column; gap: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 20px; position: relative; }
.vfx-form .input-group label { font-size: 0.6rem; letter-spacing: 2px; color: var(--text-dim); font-weight: 700; }
.vfx-form .input-group input, .vfx-form .input-group textarea { background: transparent; border: none; color: #fff; font-size: 1rem; outline: none; font-family: inherit; }

/* Custom Dropdown */
.custom-select { position: relative; cursor: pointer; user-select: none; }
.select-trigger { display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 1rem; }
.arrow-icon { font-size: 0.7rem; transition: transform 0.4s var(--vfx-ease); color: var(--text-dim); }
.select-options { position: absolute; top: 100%; left: 0; width: 100%; background: #111; border: 1px solid rgba(255, 255, 255, 0.1); z-index: 100; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s var(--vfx-ease); margin-top: 15px; }
.custom-select.active .select-options { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-select.active .arrow-icon { transform: rotate(180deg); }
.option { padding: 15px; font-size: 0.8rem; letter-spacing: 1px; color: var(--text-dim); }
.option:hover { background: #1a1a1a; color: #fff; }
.submit-btn { background: #fff; color: #000; border: none; padding: 25px 40px; font-weight: 800; letter-spacing: 3px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: transform 0.3s var(--vfx-ease); }
.submit-btn:hover { transform: translateY(-5px); background: #eee; }

/* --- 12. MEGA FOOTER --- */
.vfx-mega-footer { background-color: var(--bg-color); padding: 100px 60px 20px 60px; border-top: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; margin-top: 100px; position: relative; }
.footer-top-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 80px; position: relative; z-index: 2; }
.footer-label { display: block; font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 30px; text-transform: uppercase; }
.footer-input-wrapper { position: relative; border-bottom: 1px solid rgba(255, 255, 255, 0.2); display: flex; padding-bottom: 10px; width: 85%; }
.footer-input { background: transparent; border: none; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem; width: 100%; outline: none; }
.footer-arrow-btn { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.2rem; transition: transform 0.3s var(--vfx-ease); }
.footer-arrow-btn:hover { transform: translateX(5px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-link { text-decoration: none; color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; transition: color 0.3s var(--vfx-ease); }
.footer-link .arrow { opacity: 0; transform: translateX(-10px); transition: all 0.3s var(--vfx-ease); }
.footer-link:hover { color: var(--text-dim); }
.footer-link:hover .arrow { opacity: 1; transform: translateX(0); }
.credits-text { font-size: 0.75rem; color: var(--text-dim); line-height: 1.6; letter-spacing: 0.2px; max-width: 280px; }
.massive-footer-logo { font-size: 20vw; font-weight: 800; line-height: 0.8; letter-spacing: -1.2vw; text-align: center; color: #fff; margin-top: 40px; user-select: none; pointer-events: none; opacity: 0.95; z-index: 1; }
.footer-copyright-bar { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 10px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }

/* =========================================
   📱 RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (min-width: 901px) and (max-width: 1100px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

@media (max-width: 900px) {
    /* Global Overrides */
    html, body { overflow-x: hidden !important; width: 100%; max-width: 100vw; -webkit-font-smoothing: antialiased; }
    *, *::before, *::after { box-sizing: border-box; }
    main { padding: 40px 20px !important; overflow-x: hidden; }
    section { padding: 60px 0 !important; width: 100%; }
    .spatial-archive-section, .about-fullscreen, .work-slider-section { padding: 60px 20px !important; }

    /* Nav */
    .studio-nav { padding: 5px 20px 20px 20px; flex-direction: column; gap: 20px; align-items: center; background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); mix-blend-mode: normal; position: absolute; top: 0; }
    .brand h1 { font-size: 1.5rem; justify-content: center; }
    .nav-content { width: 100%; justify-content: center; }
    .nav-list { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 15px; }
    .nav-list a { font-size: 0.75rem; letter-spacing: 1px; }
    .action-pill { display: none; }

    /* Hero */
    .hero-video-container { height: auto; aspect-ratio: 16 / 9; margin-top: 80px; }
    .video-background { object-fit: contain; }
    .hero-video-container::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 20%; background: linear-gradient(to bottom, transparent 0%, var(--bg-color) 100%); z-index: 2; pointer-events: none; }

    /* Detail & About */
    .detail-section { padding-top: 0; justify-content: center; text-align: center; }
    .slide-in-right { text-align: left; transform: translateY(30px); } 
    .detail-title { font-size: clamp(1.8rem, 6vw, 2.5rem); line-height: 1.15; }
    .detail-subtitle { font-size: 1.1rem; margin-top: 15px; opacity: 0.7; }
    
    .about-fullscreen { min-height: auto; padding-top: 80px !important; }
    .about-flex-container { flex-direction: column; gap: 60px; }
    .about-content { flex: none; width: 100%; text-align: left; }
    .about-p { font-size: clamp(1.4rem, 6vw, 1.8rem); line-height: 1.5; row-gap: 8px; }
    .word-wrapper { padding: 10px 6px; margin: -10px 4px; transform: translateY(-3px); }
    .ghost, .word-anim { font-size: clamp(1.4rem, 6vw, 1.8rem); padding-bottom: 0; }
    .white-bold { margin: 0 4px; }
    
    .grid-sidebar { width: 100%; min-width: 100% !important; height: 450px; margin-top: 20px; }

    /* Typography Overrides */
    .tag-label, .archive-tag-label { font-size: 1rem; letter-spacing: 4px; margin-bottom: 20px; }
    .tag-label.closing, .archive-tag-label.archive-closing { margin-top: 20px; }

    /* Slider */
    .work-slider-section { overflow: hidden; padding-left: 0 !important; padding-right: 0 !important; }
    .work-slider-section .tag-label { padding-left: 20px; }
    .work-slider-section .closing { padding-right: 20px; }
    .slider-window { width: 100vw; margin: 0; }
    .slide { min-width: 90vw; padding: 0 10px; }
    .nav-arrow { display: none; } 

    /* Archive */
    .editorial-grid { grid-template-columns: 1fr; gap: 60px; padding: 40px 0; }
    .editorial-grid > .work-item:nth-child(even) { margin-top: 0; }
    .archive-video-wrapper { border-radius: 4px; } 

    /* Contact */
    .contact-page { padding: 60px 20px !important; min-height: auto; }
    .contact-container { display: flex; flex-direction: column; gap: 60px; }
    .contact-form-wrapper { order: 1; }
    .contact-headline { font-size: clamp(2rem, 8vw, 3rem); text-align: left; }
    .form-row { grid-template-columns: 1fr; gap: 30px; }
    .vfx-form { gap: 40px; }
    .submit-btn { padding: 20px; font-size: 0.9rem; justify-content: center; gap: 15px; }
    .contact-sidebar { order: 2; text-align: center; }
    .contact-sidebar .tag-label { display: none; } 
    .contact-details { display: flex; flex-direction: row; justify-content: space-around; flex-wrap: wrap; }
    .detail-group { align-items: center; margin-bottom: 20px; }

    /* Footer & Modal */
    .vfx-mega-footer { padding: 60px 20px 30px 20px !important; margin-top: 60px; }
    .footer-top-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .footer-input-wrapper { width: 100%; justify-content: space-between; }
    .footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .footer-link .arrow { display: none; } 
    .credits-text { margin: 0 auto; }
    .massive-footer-logo { font-size: 18vw; letter-spacing: -1vw; margin-top: 40px; }
    .footer-copyright-bar { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .archive-video-stage { width: 100%; height: auto; transform: scale(0.95); }
}

@media (max-width: 480px) {
    .detail-title { font-size: 1.8rem; }
    .about-p { font-size: 1.4rem; }
    .ghost, .word-anim { font-size: 1.4rem; }
    .grid-sidebar { height: 350px; }
    .slide { min-width: 95vw; }
}

/* */
/* --- UPDATED REACTIVE CURSOR --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');

/* HIDE CURSOR ONLY IN THE ARCHIVE SECTION */
.spatial-archive-section .work-item {
    cursor: none !important;
}

#vfx-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: #fff !important;
    border-radius: 50% !important;
    pointer-events: none !important; /* Prevents blocking clicks */
    z-index: 99999999 !important; /* Stays above all VFX layers */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s ease, transform 0.5s var(--vfx-ease);
    will-change: transform, opacity;
}

#vfx-circle.is-active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.watch-label {
    font-family: 'Roboto', sans-serif;
    color: #000 !important;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* */
/* --- MOBILE & ACCESSIBILITY OVERRIDES --- */
@media (max-width: 900px) {
    /* 1. Kill the cursor follower on all touch devices */
    #vfx-circle { 
        display: none !important; 
    }
    
    /* 2. Restore the normal pointer for the archive cards */
    .spatial-archive-section .work-item {
        cursor: auto !important;
    }

    /* 3. Fix the thin "I am a" text weight */
    .about-p { 
        font-weight: 400 !important; 
        letter-spacing: -0.5px !important; /* Opens up the tight letters */
    }
    
    /* 4. Ensure animated words are bold enough to read */
    .ghost, .word-anim { 
        font-weight: 700 !important; 
    }
}

/* Extra safety: Hide if the device doesn't even HAVE a mouse */
@media (pointer: coarse) {
    #vfx-circle { display: none !important; }
    .spatial-archive-section .work-item { cursor: auto !important; }
}