/* =========================================
   LIMVO DESIGN TOKENS
   ========================================= */

:root {
    /* IDENTITY */
    --color-brand-blue: #2544B9;
    --color-brand-red: #C60A40;
    --color-bg-dark: #050505;
    --color-bg-card: rgba(20, 20, 20, 0.6);
    --color-text-main: #FFFFFF;
    --color-text-muted: #888888;

    /* TYPOGRAPHY - STRICT AKROBAT */
    --font-display: 'Akrobat', sans-serif;
    --font-body: 'Akrobat', sans-serif;

    /* SPACING & LAYOUT */
    --spacing-container: 1400px;
    --spacing-gutter: 5vw;
    /* Fluid fallback */
    --spacing-gutter-mobile: 20px;
    /* Safe fixed margin */
    --spacing-gutter-desktop: 40px;
    /* Safe fixed margin */

    --spacing-section-desktop: 150px;
    --spacing-section-mobile: 80px;

    /* ANIMATION */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
    font-family: 'Akrobat';
    src: url('../assets/Akrobat-Thin.ttf');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Akrobat';
    src: url('../assets/Akrobat-Regular.ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Akrobat';
    src: url('../assets/Akrobat-SemiBold.ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Akrobat';
    src: url('../assets/Akrobat-Bold.ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Akrobat';
    src: url('../assets/Akrobat-Black.ttf');
    font-weight: 900;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-display);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Sticky Footer Setup */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    width: 100%;
}

/* UTILITY CLASSES */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Hide scrollbar completely */
html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
    width: 0;
    height: 0;
}

*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ensure Lenis doesn't create extra scrollbar */
.lenis,
.lenis-wrapper,
html.lenis,
html.lenis-scrolling {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.lenis::-webkit-scrollbar,
.lenis-wrapper::-webkit-scrollbar,
html.lenis::-webkit-scrollbar {
    display: none !important;
}