html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for clean look but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Visibility classes for initial GSAP state to prevent flash of unstyled content */
.gs_reveal {
    visibility: hidden;
}
.gs_reveal_up {
    visibility: hidden;
}
.gs_reveal_left {
    visibility: hidden;
}
.gs_reveal_right {
    visibility: hidden;
}
