:root {
    --scroll-behavior: smooth;
}

body {
    background-color: var(--color-base-100);
    color: var(--color-base-content);
    overflow-x: hidden;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

body.menu-is-open {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed;
    width: 100%;
}

.btn-download {
    background-color: #1036CA;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-btn-primary {
    background-color: #1036CA;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.625rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn-secondary {
    background-color: #e5e3e1;
    color: #111111;
    padding: 0.875rem 1.75rem;
    border-radius: 0.625rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-header {
    font-size: 0.875rem;
    font-weight: 400;
    color: #111111;
    transition: opacity 0.2s;
}

.window-frame {
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.15);
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Fixed Mobile Menu Overlay */
#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: #f3f3f1; /* Hardcoded to ensure visibility */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#mobile-menu-overlay.is-active {
    display: block;
    opacity: 1;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-base-content);
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}