:root {
    /* Палитра — белая основа */
    --bg: #ffffff;
    --bg-page: #fafbff;
    --bg-elevated: rgba(255, 255, 255, 0.72);
    --bg-glass: rgba(255, 255, 255, 0.55);
    --bg-glass-strong: rgba(255, 255, 255, 0.85);

    --border-soft: rgba(15, 23, 42, 0.06);
    --border-glass: rgba(255, 255, 255, 0.5);

    --text-primary: #0c0c14;
    --text-secondary: #6e6e80;
    --text-tertiary: #a4a4b3;
    --text-on-accent: #ffffff;

    /* Акценты */
    --accent-blue: #2787f5;
    --accent-purple: #a76bff;
    --accent-pink: #ff6bb5;
    --accent-orange: #ffb46b;
    --accent-green: #34c759;
    --accent-red: #ff453a;

    /* Градиенты */
    --gradient-warm: linear-gradient(135deg, #ff8fc8 0%, #ffb46b 100%);
    --gradient-cool: linear-gradient(135deg, #6cb5ff 0%, #b388ff 100%);
    --gradient-aurora: linear-gradient(135deg, #ff8fc8 0%, #b388ff 50%, #6cb5ff 100%);

    /* Отступы — шаг 4px */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;

    /* Радиусы */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Тени */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
    --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);

    /* Блюр для стекла */
    --blur-sm: 8px;
    --blur-md: 20px;
    --blur-lg: 32px;

    /* Типографика */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Display", system-ui, sans-serif;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 22px;
    --text-2xl: 28px;
    --text-3xl: 34px;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Анимация */
    --t-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Safe-area: айфоновая чёлка / android nav-bar */
    --safe-top:    env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left:   env(safe-area-inset-left, 0px);
    --safe-right:  env(safe-area-inset-right, 0px);

    /* Размеры layout */
    --nav-height-mobile: 64px;
    --nav-width-desktop: 240px;
    --content-max-width: 720px;

    /* Z-индексы */
    --z-base:  0;
    --z-nav:   100;
    --z-modal: 1000;
    --z-toast: 2000;
}
