*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
}

.font-headline {
    font-family: var(--font-headline);
}

a {
    text-decoration: none;
    transition: all var(--duration-normal, 0.25s) var(--ease-smooth, ease);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(59,130,246,0.12);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59,130,246,0.25);
}

.text-gradient {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="number"] {
    color-scheme: light;
}

select {
    color-scheme: light;
}

strong {
    color: var(--text);
}

hr {
    border-color: var(--border);
    opacity: .5;
}

::selection {
    background: rgba(59,130,246,0.3);
    color: #fff;
}
