/* Explain: Base reset, typography, and dark esoteric background */
* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #1c1533, var(--bg-color) 70%);
    color: var(--text-main);
    text-rendering: optimizeLegibility;
}

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

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

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #fff;
}

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

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

.eyebrow {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-body);
}
