/* tvoi.life — дизайн‑токены */

/* Подключение обычных начертаний */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter/Inter-Italic.woff2') format('woff2');
}

:root {
    /* Цвета */
    --bg-base: #fbfbf9; /* тёплый белый */
    --bg-surface: #ffffff; /* карточки, модалки */
    --bg-muted: #f3f3ef; /* второстепенные блоки */

    --text-primary: #1a2a2f; /* основной текст (глубокий, не чёрный) */
    --text-secondary: #4a5b5e; /* подсказки, лёгкий текст */
    --text-muted: #8a9a9e; /* совсем служебный */

    --accent: #2f6b5e; /* основной акцент (спокойная зелень/чайный) */
    --accent-soft: #e2f0eb; /* фон под акцент */
    --accent-hover: #235347; /* наведение */

    --border-light: #e2e2dc; /* разделители, границы */
    --focus-ring: #2f6b5e; /* кольцо фокуса */

    --warning: #c97b5a; /* мягкое предупреждение */
    --warning-soft: #faf0e8;

    /* Тени */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 32px rgba(0, 0, 0, 0.07);

    /* Типографика */
    --font-family:
        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;

    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.6;

    /* Отступы / сетка */
    --container-padding: 1rem;
    --container-max-width: 80rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Анимации */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.3s ease;
}

body {
    font-family:
        'Inter',
        system-ui,
        -apple-system,
        sans-serif;
}

.shadow-soft {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
}
