*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body {
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(96, 165, 250, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 18%,
            rgba(167, 139, 250, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f3f7ff 0%,
            #f8f7ff 50%,
            #f1fbfd 100%
        );

    color: var(--nc-text, #0f172a);
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

:root{

    --nc-primary:#2563eb;
    --nc-primary-hover:#1d4ed8;

    --nc-success:#10b981;
    --nc-warning:#f59e0b;
    --nc-danger:#ef4444;

    --nc-text:#0f172a;
    --nc-text-light:#64748b;

    --nc-border:#e2e8f0;

    --nc-bg:#ffffff;
    --nc-bg-soft:#f8fafc;

}