/* Agency-grade Sans-Serif Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #ffffff;
}

/* --- REFINED VIDEO BACKGROUND --- */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.25) grayscale(0.6) contrast(1.2);
}

.content-layer {
    position: relative;
    z-index: 10;
}

/* Clean Agency Scrollbar */
body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: #000000; }
body::-webkit-scrollbar-thumb { background: #333333; }

/* Smooth reveal animation for sections */
.glass-panel {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}