/* Explain: Base reset and typography defaults for the KDCHL digital growth studio. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.13), transparent 22rem),
        radial-gradient(circle at 88% 8%, rgba(145, 145, 140, 0.14), transparent 24rem),
        radial-gradient(circle at 48% 100%, rgba(255, 255, 255, 0.07), transparent 32rem),
        linear-gradient(135deg, #060606 0%, #111111 44%, #070707 100%);
    color: var(--text-color);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

button,
a,
select {
    cursor: pointer;
}

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

input,
select,
textarea {
    color-scheme: dark;
}

::selection {
    background: var(--accent-color);
    color: #050505;
}