/* Explain: Base reset, typography defaults, smooth scroll, Alpine cloak */
* {
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

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

::selection {
    background: var(--urgent-color);
    color: var(--white-color);
}

button, a {
    -webkit-tap-highlight-color: transparent;
}
