*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background: var(--gradient-dark);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

.site-main {
    min-height: 60vh;
}

.container {
    width: min(
        var(--container-width),
        calc(100% - 32px)
    );
    margin-inline: auto;
}

.section {
    padding: clamp(64px, 8vw, 112px) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--color-primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.12;
}

.section-heading p {
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

::selection {
    color: #06131f;
    background: var(--color-primary-light);
}
