/* Explain: Base styles, typography, and focus states for the corporate theme. */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
}

body.has-mobile-sticky {
    padding-bottom: 0;
}

h1, h2, h3, .brand-mark {
    font-family: var(--font-heading);
}

.brand-mark {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

@media (max-width: 767px) {
    body.has-mobile-sticky {
        padding-bottom: 96px;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}