/* Base tipográfica y utilidades */
body {
    font-family: var(--font-sans);
    font-size: var(--text-md);
    line-height: 1.55;
    color: var(--color-ink);
    background: var(--color-bg);
}

:focus-visible {
    outline: 3px solid var(--color-brand-ring);
    outline-offset: 2px;
    border-radius: 4px;
}

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

.mono {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

.nowrap {
    white-space: nowrap;
}

.ta-right {
    text-align: right;
}

.hint {
    display: block;
    color: var(--color-ink-soft);
    font-size: var(--text-xs);
    margin-top: var(--space-1);
}
