/* Critical CSS: prevent CLS and render-blocking */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: env(safe-area-inset-top, 0) 0 0;
    background: #1a1a1a;
    color: #f5f1e8;
    font-family: Inter, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

header {
    height: auto;
    min-height: 80px;
}

section.hero,
#root>div>main>section:first-child {
    min-height: 100svh;
    min-height: 100vh;
}

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