/* Resets y Básicos de A11y */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus-visible {
    outline: 2px solid var(--accent-primary, #2ecca6);
    outline-offset: 4px;
    border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Typography Tools */
.mono {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: -0.02em;
}

.text-dim {
    color: var(--text-secondary);
}