:root {
    color-scheme: dark;

    /* Dark theme */
    --bg: #090b0a;
    --text: #e8ebe8;
    --text-muted: #9da39f;
    --accent: #a9d6ee;
    --accent-hover: #cfe8f6;
    --accent-soft: #203944;
    --border: #2d3230;
    --border-light: #414845;
    --success: #76c893;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 1.1rem;
    --line-height: 1.8;
    --line-height-mobile: 1.7;
    
    /* Layout */
    --max-width: 680px;
    --spacing: 1rem;
    --touch-target: 44px;
    
    /* Spacing */
    --content-padding: 1.5rem;
    --section-gap: 3rem;
    --section-gap-mobile: 2rem;
    --paragraph-spacing: 1.25rem;
}

::selection {
    background: var(--accent-soft);
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (min-width: 1024px) {
    :root {
        --max-width: 720px;
    }
}
