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

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

html{
    font-family:system-ui,-apple-system,'Segoe UI',sans-serif;
    font-size:16px;background:var(--bg-deep);color:var(--text);
    scrollbar-color:var(--scrollbar-thumb) var(--scrollbar-track);
    -webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;
    scroll-behavior:smooth;overflow-x:clip
}
body{overflow-x:clip}
a{color:var(--link);text-decoration:none}
a:hover{color:var(--accent-hover)}
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--scrollbar-track)}
::-webkit-scrollbar-thumb{background:var(--scrollbar-thumb)}

input[type="text"],input[type="password"],input[type="email"],
input[type="number"],input[type="search"],textarea,select{
    background:var(--bg-inset);color:var(--text);
    border:1px solid var(--border);
    padding:10px 14px;font-size:.95rem;outline:none;
    font-family:inherit;transition:border-color .2s,box-shadow .2s
}
input[type="text"]:focus,input[type="password"]:focus,
input[type="email"]:focus,input[type="number"]:focus,
input[type="search"]:focus,textarea:focus,select:focus{
    border-color:var(--accent);
    box-shadow:0 0 12px var(--accent-glow)
}
input::placeholder,textarea::placeholder{color:var(--text-faint)}

@media(min-width:2000px){
    :root{--band-inner:2560px}
}

@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{
        transition-duration:.01ms !important;
        animation-duration:.01ms !important;
        scroll-behavior:auto !important
    }
}
