/* public/styles/design-tokens.css */
/* Базовые design‑tokens для лендинга.
   Эти же значения можно будет позже дублировать в TS‑токены
   и использовать в React‑части. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand */
    --color-primary: #6366f1;
    --color-primary-soft: #eef2ff;
    --color-primary-strong: #4f46e5;

    --color-secondary: #0ea5e9;
    --color-secondary-soft: #e0f2fe;

    --color-accent: #22c55e;
    --color-accent-soft: #dcfce7;

    /* Neutrals */
    --color-bg-page: #f5f5fb;
    --color-bg-elevated: #ffffff;
    --color-bg-muted: #f3f4f6;

    --color-border-subtle: #e5e7eb;
    --color-border-strong: #d1d5db;

    --color-text-main: #020617;
    --color-text-muted: #4b5563;
    --color-text-soft: #9ca3af;
    --color-text-on-primary: #ffffff;

    /* Semantic */
    --color-success: #16a34a;
    --color-warning: #facc15;
    --color-danger:  #ef4444;
    --color-info:    #0ea5e9;

    /* Radii */
    --radius-xs: 0.375rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-elevated: 0 24px 60px rgba(15, 23, 42, 0.18);

    /* Layout */
    --container-max: 1120px;
    --page-padding-x: 1.5rem;
    --section-spacing-y: 5rem;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
