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

:root {
    /* Brand */
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-glow: rgba(0, 102, 255, 0.2);
    --accent: #0066ff;
    /* Neutral palette */
    --white: #ffffff;
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-soft: #f1f5f9;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #64748b;
    --slate-500: #475569;
    --slate-600: #334155;
    --slate-700: #1e293b;
    --slate-900: #0f172a;
    /* Text */
    --text-main: #0f172a;
    --text-muted: #64748b;
    /* Borders */
    --border-light: rgba(15, 23, 42, 0.08);
    --border-soft: rgba(0, 102, 255, 0.10);
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(0, 102, 255, 0.10);
    --glass-blur: 12px;
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    /* Layout */
    --header-height: 72px;
    --header-height-scrolled: 56px;
    --section-padding: 8rem;
    /* Typography */
    --font-body: "Inter", sans-serif;
    --font-display: "Outfit", sans-serif;
    /* Motion */
    --transition-fast: 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
