/* Explain: Base styles, typography, and responsive layout defaults. */
* {
    box-sizing: border-box;
}

[x-cloak] {
    display: none !important;
}

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

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

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

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

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

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

::selection {
    background: var(--tech-blue);
    color: #fff;
}

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