/**
 * PUMPIO — Brand Kit 2026
 * Источник: PUMPIO_Brand_Kit_2026 / 06_Design_Tokens
 * Подключается ПЕРЕД app.css — app.css наследует эти токены.
 */

/* ===== Шрифт Nunito (локальный, без Google Fonts) ===== */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/Nunito-Cyrillic-Regular.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+0400-045F, U+0490-0491,
                   U+04B0-04B1, U+2000-206F, U+2116, U+20B4, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/Nunito-Cyrillic-SemiBold.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+0400-045F, U+0490-0491,
                   U+04B0-04B1, U+2000-206F, U+2116, U+20B4, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/Nunito-Cyrillic-ExtraBold.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+0400-045F, U+0490-0491,
                   U+04B0-04B1, U+2000-206F, U+2116, U+20B4, U+2122, U+2191, U+2193, U+2212;
}
/* 900 в макетах отсутствует — маппим на ExtraBold, чтобы браузер не синтезировал жирность */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/assets/fonts/Nunito-Cyrillic-ExtraBold.woff2') format('woff2');
}

/* ===== Фирменные токены (канон брендбука) ===== */
:root {
    /* Основная палитра */
    --pumpio-brand: #1B3A8C;
    --pumpio-accent: #FF5722;
    --pumpio-bg: #0F0F13;
    --pumpio-bg-elevated: #16161E;
    --pumpio-surface-light: #F7F7FA;
    --pumpio-text-on-dark: #E8E6E3;
    --pumpio-text-on-light: #171722;
    --pumpio-text-muted: #6A6A7A;
    --pumpio-font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Производные оттенки — рассчитаны от канона, отдельными цветами не считаются */
    --pumpio-brand-light: #2E4FA0;
    --pumpio-brand-dark: #142B69;
    --pumpio-accent-dark: #E64A19;
    --pumpio-accent-light: #FF8A65;
    --pumpio-accent-glow: rgba(255, 87, 34, 0.25);

    /* Начертания */
    --pumpio-weight-regular: 400;
    --pumpio-weight-semibold: 600;
    --pumpio-weight-extrabold: 800;
}
