/* Explain: Base reset, typography, and accessibility defaults with updated background and dark glassmorphism. - */
* {
    box-sizing: border-box;
}

html {
    background: #06192e;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: #06192e;
    background-image: linear-gradient(rgba(6, 25, 46, 0.65), rgba(6, 25, 46, 0.95)), url('https://files.cdn-files-a.com/uploads/12262762/normal_gi-6a55fc7121a1b.jpg?format=avif');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    text-rendering: optimizeLegibility;
}

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

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

::selection {
    background: rgba(0, 86, 179, 0.24);
    color: var(--charcoal-color);
}

:focus-visible {
    outline: 3px solid rgba(0, 86, 179, 0.42);
    outline-offset: 4px;
}

.font-heading {
    font-family: var(--font-heading);
}

.eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clay-color);
}

.prose h3 {
    color: var(--charcoal-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.prose ul {
    list-style-type: disc;
    padding-inline-start: 1.5rem;
    margin-bottom: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose p {
    margin-bottom: 1.5rem;
}
