/* ==================================================
   Design System
================================================== */

/* Colors */
:root{

    --primary:#0F4C81;
    --primary-dark:#0A365D;

    --secondary:#F58220;
    --secondary-dark:#ff8800;

    --success:#10B981;
    --danger:#EF4444;

    --dark:#0B1220;
    --dark-light:#1E293B;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --gray:#64748B;
    --gray-light:#E2E8F0;

    /* Typography */
    --font-heading:'Poppins',sans-serif;
    --font-body:'Inter',sans-serif;

    /* Radius */
    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:20px;
    --radius-xl:28px;

    /* Shadows */
    --shadow-sm:0 6px 18px rgba(15,76,129,.08);
    --shadow-md:0 12px 35px rgba(15,76,129,.12);
    --shadow-lg:0 20px 60px rgba(15,76,129,.18);

    /* Animation */
    --transition:.35s ease;

}