/* SENTINEL OT - Base Styles, Reset & Generative Background */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important; /* Keep this for Lenis */
    scroll-padding-top: var(--header-height);
    overflow-x: clip; 
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-sans);
    background-color: #050505;
    background-image:
        repeating-radial-gradient(circle at 50% 50%, transparent 0, rgba(139, 92, 246, 0.03) 2px, transparent 4px),
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.05), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.04), transparent 30%),
        /* Interactive Spotlight from JS */
        radial-gradient(circle 800px at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.04) 0%, transparent 80%);
    background-size: 60px 60px, 150vw 150vh, 150vw 150vh, 100vw 100vh;
    background-position: 0 0, 0 0, 0 0, center;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: fixed;
    animation: bgBreathe 30s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}
