/* ============================================================================
   CSS RESET - Box sizing and focus states
   ============================================================================ */

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

/* Brutalist focus states - Bold and obvious */
a:focus-visible,
button:focus-visible,
details:focus-visible,
input:focus-visible,
.source-chip:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    min-height: 100vh;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    word-spacing: 0;
    position: relative;
}

/* Remove texture overlay for brutalist clean look */
body::before {
    display: none;
}

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