
/*
    Created on : 15 mar 2026, 12:03:17
    Author     : davide
*/

/* Fonts */
:root
{
    --color-white: #ffffff;
    --color-dark: #1F2640;
    --color-text: #333333;
    --color-tex-light: #777777;
    --color-text-medium: #555555;
    --color-gray-light: #f8f8f8;
    --color-pr:#AA41C8;
    --color-sec:#7D96FF

}
@font-face
{
    font-family: 'Lexend';
    src: url('fonts/Lexend-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'Lexend';
    src: url('fonts/Lexend-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'Lexend';
    src: url('fonts/Lexend-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'Lexend';
    src: url('fonts/Lexend-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
html
{
    font-size: 100%;
}
body
{
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

header
{
    height: 65px;
    padding: 0 25px;
    position: fixed;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: rgba(255,255,255,0.03);
    transition: background-color 300ms ease;
}
header.scrolled
{
    background-color: var(--color-dark);
}
p,a
{
    font-size: 0.9rem;
    line-height: 1.3rem;
    font-weight: 400
}
p
{
    color: var(--color-text) !important;
    font-weight: 200;
}
h2
{
    font-size: 2rem;
    font-weight: 400;
    paint-order: stroke fill;
    -webkit-text-stroke: 1px var(--color-dark);

}
h3
{
    font-size: 1.4rem;
    font-weight: 400;
}
h4
{
    font-size: 1.2rem;
    font-weight: 400;
}
h5
{
    font-size: 1rem;
    font-weight: 400;
}
h6
{
    font-size: 0.85rem;
    font-weight: 400;
}
.color-white
{
    color: var(--color-white) !important
}
.color-dark
{
    color: var(--color-dark) !important
}
.color-pr
{
    color: var(--color-pr) !important
}
.color-sec
{
    color: var(--color-sec) !important
}
.color-text
{
    color: var(--color-text) !important
}
.color-text-light
{
    color: var(--color-tex-light) !important
}
.color-text-medium
{
    color: var(--color-text-medium) !important
}
.color-gray-light
{
    color: var(--color-gray-light) !important
}
.bg-color-white
{
    background-color: var(--color-white) !important;
}
.bg-color-pr
{
    background-color: var(--color-pr) !important;
}
.bg-color-sec
{
    background-color: var(--color-sec) !important;
}
.bg-color-dark
{
    background-color: var(--color-dark) !important;
}
.bg-color-gray-light
{
    background-color: var(--color-gray-light) !important;
}
.bg-color-text
{
    background-color: var(--color-text) !important;
}
.bg-color-text-light
{
    background-color: var(--color-tex-light) !important;
}
.bg-color-text-medium
{
    background-color: var(--color-text-medium) !important;
}
#icon-nav
{
    cursor: pointer;
    color: var(--color-white)
}
#box-nav-menu
{
    position: fixed;
    top: 65px;
    padding: 20px 40px;
    right: 0;
    min-width: 60vw;
    opacity: 0;
    scale: 0.8;
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 300ms ease, scale 300ms ease;
    background-color: var(--color-dark);
}
#box-nav-menu.open
{
    opacity: 1;
    scale: 1;
    pointer-events: auto;
}
#box-nav-menu li
{
    margin-bottom: 5px;
}
#box-nav-menu li:last-child
{
    margin-bottom: 0;
}
.lang-switcher
{
    position: relative;
}
.lang-current
{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.lang-dropdown
{
    list-style: none;
    padding: 0;
    margin-top: 8px;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}
.lang-switcher.open .lang-dropdown
{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li
{
    margin: 0;
    padding: 0;
}
.lang-dropdown li a
{
    display: block;
    font-size: 0.85rem;
    white-space: nowrap;
    color: var(--color-white);
    transition: color 300ms ease-out;
}

#logo-header
{
    width: 100px;
}
#jt
{
    display: flex;
    justify-content: center;
    min-height: 100dvh;
    padding-top: 100px;

}
a.link.on-dark
{
    color: var(--color-white);
    transition: all 300ms ease-out;
}
a.link.on-white
{
    color: var(--color-dark);
    transition: all 300ms ease-out;
}
a.link.on-white:hover
{
    color: var(--color-pr);
}
a.btn,
button.btn
{
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    align-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 5px;
    outline: 1px solid var(--color-white);
    width: 100%;
    height: 50px;
    text-align: center;
    transition: all 300ms ease-out;
}
a.btn.on-dark:hover,
button.btn.on-dark:hover
{
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 0 6px 6px  rgba(170,65,99,0.4);
    transition: all 300ms ease-out;
}
a.btn.on-dark,
button.btn.on-dark
{
    color: var(--color-white)
}
.icons
{
    width: 22px;
}
#jt h1
{
    font-weight: 400;
    font-size: 6rem;
    color: var(--color-white);
    margin-bottom: -24px;

}
.gradient-white-v
{
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}
#bg-jt
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(150deg, rgba(150, 65, 200, 1) 2%, rgba(31, 38, 64, 1) 58%);
    padding: 0 25px;

}
#bg-jt .fl-box
{
    height: 300px;
}

#bg-jt .height1
{
    height: 250px;
}
#bg-jt .height2
{
    height: 320px;
}
#bg-jt .height3
{
    height: 280px;
}
#bg-jt .height4
{
    height: 340px;
}
#bg-jt .height5
{
    height: 200px;
}
#bg-jt .height6
{
    height: 310px;
}
#bg-jt .height7
{
    height: 220px;
}

#bg-jt .height8
{
    height: 360px;

}

.box-dimostration
{
    height: 40px;
    background-color: var(--color-pr);
    position: relative;
}
.box-dimostration.first-row
{
    height: 30px;
}
.box-dimostration-inner
{
    background-color: var(--color-dark);
    opacity: 0.5;
}
.info-dim-A
{
    display: none;
}
#section-dim-A
{
    background-color: rgba(125,150,255,0.08)
}
.info-dim-B
{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.7rem;
    color: var(--color-white);
    background-color: var(--color-pr);
    padding: 2px 5px;
    font-weight: 200
}
.box-dimostration.wf
{
     background-color: rgba(170,65,99,0.1);
     outline: 1px solid var(--color-pr);
}
p.dim
{

}
.code-block
{
    background-color: var(--color-dark);
    overflow: hidden;
}
.code-block-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background-color: rgba(255,255,255,0.05);
}
.code-block-label
{
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-pr);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-copy
{
    background: none;
    border: none;
    color: var(--color-tex-light);
    cursor: pointer;
    padding: 4px;
    transition: color 300ms ease;
}
.btn-copy:hover
{
    color: var(--color-white);
}
.btn-copy.copied
{
    color: #4ade80;
}
.code-block pre
{
    padding: 16px;
    margin: 0;
    overflow-x: auto;
}
.code-block code
{
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: var(--color-white);
    font-weight: 300;
    line-height: 1.6;
}
.feature-card
{
    border: 1px solid rgba(31,38,64,0.08);
    background-color: var(--color-white);
    height: 100%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(31,38,64,0.08);
}
.feature-card h4
{
    margin: 0;
    padding: 16px 16px;
    font-weight: 400;
}
.feature-card p
{
    padding: 24px 16px;
    margin: 0;
}
.bp-row
{
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.bp-row:last-child
{
    border-bottom: none;
}
.bp-cell
{
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-dark);
}
.bp-cell code
{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: var(--color-white);
}
.bp-cell.bp-header
{
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}
footer
{
    background: linear-gradient(150deg, rgba(150, 65, 200, 1) 2%, rgba(31, 38, 64, 1) 58%);
}
.footer-inner
{
    text-align: center;
}
.footer-separator
{
    display: none;
}
#logo-footer
{
    width: 120px;
    margin: 0 auto 16px;
    display: block;
}
footer .footer-text
{
    color: var(--color-white) !important;
    font-size: 0.75rem;
    font-weight: 200;
}
footer .footer-author
{
    font-size: 0.65rem;
}
footer .footer-copy
{
    color: var(--color-white) !important;
    font-size: 0.65rem;
    font-weight: 200;
}
footer a.link
{
    font-size: 0.8rem;
    color: var(--color-white);
}
.footer-links
{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

/* ---- md (576px) ---- */
@media (min-width: 576px)
{

}

/* ---- lg (768px) ---- */
@media (min-width: 768px)
{
    #jt h1
    {

        font-size: 8rem;
    }
    header
    {
        height: 70px;
        padding: 0 35px;
    }
    p,a
    {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }
    #logo-header
    {
        width: 110px;
    }
    #jt
    {
        padding-top: 120px;


    }
    a.btn
    {
        gap: 8px;
        height: 55px;
    }

    .icons
    {
        width: 26px;
    }
    #bg-jt
    {
        padding: 0 25px;
    }
    #icon-nav
    {
        display: none;
    }
    #box-nav-menu
    {
        position: relative;
        top: initial;
        left: initial;
        width: auto;
        min-width: auto;
        opacity: 1;
        scale: 1;
        padding: 0;
        background-color: transparent;
        pointer-events: auto;
    }
    #box-nav-menu > nav > ul
    {
        display: flex;
        gap: 16px;
        text-align: right;
        justify-content: end
    }
    #box-nav-menu li
    {
        margin-bottom: 0;
    }
    #box-nav-menu li>a
    {
        font-size: 1rem;
    }
    #box-nav-menu li.sep
    {
        height: auto;
        width: 1px;
        background-color: var(--color-white);
    }
    .lang-switcher
    {
        margin-top: 0;
    }
    .lang-dropdown
    {
        position: fixed;
        top: 65px;
        right: 0;
        margin-top: 0;
        padding: 8px;
    background-color: var(--color-white);
    min-width: 190px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .lang-dropdown li a
    {
        padding: 6px 16px;
        color: var(--color-dark);
    }
    .lang-dropdown li a:hover
    {
        color: var(--color-pr);
    }

    section h2
    {
        margin-bottom: -16px;
    }
    h2
    {
        font-size: 2.6rem;

    }
    h3
    {
        font-size: 1.6rem;
    }
    h4
    {
        font-size: 1.35rem;
    }
    h5
    {
        font-size: 1.15rem;
    }
    h6
    {
        font-size: 1rem;
    }
    .bp-cell
    {
        padding: 12px 0;
        font-size: 0.95rem;
    }
    #logo-footer
    {
        width: 100px;
    }
    .wrapper-box-dim
    {
        margin-top: 32px;
    }
    .box-dimostration
    {
        height: 60px;
    }
    .box-dimostration.first-row
    {
        height: 40px;
    }
    
    .info-dim-B
    {
        font-size: 0.8rem;
        padding: 3px 7px;
    }
}

/* ---- sp (1024px) ---- */
@media (min-width: 1024px)
{
    .lang-dropdown
    {
        top: 67px;
        min-width: 200px;
        padding: 16px;
    }
    #jt h1
    {
        font-size: 9rem;
        margin-bottom: -32px;
        margin-top: -72px;
    }
    header
    {
        height: 75px;
        padding: 0 50px;
    }

    #logo-header
    {
        width: 120px;
    }
    #jt
    {
        display: flex;
        align-content: center;
        align-items: center;
        padding-top: 0;
        height: 100vh;
    }
    #box-nav-menu > nav > ul
    {
        gap: 24px;
    }
    a.btn
    {
        gap: 10px;
    }

    .icons
    {
        width: 28px;
    }
    #bg-jt
    {
        padding: 0 50px;
    }

    #bg-jt .height1
    {
        height: 420px;
    }
    #bg-jt .height2
    {
        height: 380px;
    }
    #bg-jt .height3
    {
        height: 280px;
    }
    #bg-jt .height4
    {
        height: 260px;
    }
    #bg-jt .height5
    {
        height: 240px;
    }
    #bg-jt .height6
    {
        height: 180px;
    }

    section h2
    {
        margin-bottom: -16px;
    }
    h2
    {
        font-size: 3.2rem;

    }
    h3
    {
        font-size: 1.8rem;
    }
    h4
    {
        font-size: 1.5rem;
    }
    h5
    {
        font-size: 1.3rem;
    }
    h6
    {
        font-size: 1.1rem;
    }
    .bp-cell
    {
        padding: 14px 0;
        font-size: 1rem;
    }
    .feature-card h4
    {
        padding: 16px 40px;
    }
    .feature-card p
    {
        padding: 40px 40px 48px;
    }
    .footer-inner
    {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer-separator
    {
        display: block;
        width: 1px;
        height: 80px;
        background-color: rgba(255,255,255,0.2);
        margin: 0 40px;
        flex-shrink: 0;
    }
    .footer-logo-box
    {
        flex: 0 0 auto;
    }
    .footer-right
    {
        flex: 0 0 auto;
        text-align: left;
    }
    .footer-links
    {
        justify-content: flex-start;
    }
    #logo-footer
    {
        width: 140px;
        margin: 0;
    }
    .box-dimostration
    {
        height: 80px;
    }
    .box-dimostration.first-row
    {
        height: 50px;
    }
    
    .info-dim-A
    {
        display: block;
        position: absolute;
        left: 5px;
        top: 5px;
        font-size: 0.9rem;
        color: var(--color-white);
    }
    .info-dim-B
    {
        font-size: 0.8rem;
        padding: 5px 9px;
    }
    p.dim
    {
        max-width: 820px;
    }

}

/* ---- mg (1420px) ---- */
@media (min-width: 1420px)
{
    .lang-dropdown
    {
        top: 72px;
         min-width: 220px;
        padding: 24px;
    }
    #jt h1
    {
        font-size: 11rem;
        margin-bottom: -40px;
        margin-top: -90px;
        font-weight: 400;
        letter-spacing: 2px;
        paint-order: stroke fill;
        -webkit-text-stroke: 2px var(--color-white);
    }
    header
    {
        height: 85px;
    }
    #logo-header
    {
        width: 130px;
    }

    #box-nav-menu > nav > ul
    {
        gap: 32px;
    }
    p,a
    {
        font-size: 1rem;
        line-height: 1.6rem;
    }
    #jt p, #jt a:not(.btn)
    {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }
    .icons
    {
        width: 30px;
    }
    #bg-jt
    {
        padding: 0 80px ;
    }
    #bg-jt .height1
    {
        height: 600px;
    }
    #bg-jt .height2
    {
        height: 440px;
    }
    #bg-jt .height3
    {
        height: 320px;
    }
    #bg-jt .height4
    {
        height: 240px;
    }
    #bg-jt .height5
    {
        height: 180px;
    }
    #bg-jt .height6
    {
        height: 150px;
    }
    
    section h2
    {
        margin-bottom: -24px;
    }
    h2
    {
        font-size: 3.4rem;

    }
    h3
    {
        font-size: 1.8rem;
    }
    h4
    {
        font-size: 1.4rem;
    }
    h5
    {
        font-size: 1.35rem;
    }
    h6
    {
        font-size: 1.15rem;
    }
    #logo-footer
    {
        width: 160px;
    }
    .box-dimostration
    {
        height: 90px;
    }
    .box-dimostration.first-row
    {
        height: 60px;
    }
    
    .info-dim-A
    {
        left: 8px;
        top: 8px;
        font-size: 1rem;
    }
    
    


}

/* ---- ut (1860px) ---- */
@media (min-width: 1860px)
{
    .lang-dropdown
    {
        top: 80px;
    }
    header
    {
        height: 100px;
    }
    #logo-header
    {
        width: 140px;
    }

    #box-nav-menu > nav > ul
    {
        gap: 40px;
    }

    #jt h1
    {
        font-size: 13rem;
    }
    #jt p, #jt a:not(.btn)
    {
        font-size: 1.5rem;
        line-height: 2.1rem;
    }
    .icons
    {
        width: 40px;
    }


    h2
    {
        font-size: 4.2rem;

    }
    h3
    {
        font-size: 2.2rem;
    }
    h4
    {
        font-size: 1.8rem;
    }
    h5
    {
        font-size: 1.5rem;
    }
    h6
    {
        font-size: 1.3rem;
    }
    .bp-cell.bp-header
    {
        font-size: 0.9rem;
    }
    #logo-footer
    {
        width: 180px;
    }
    footer .footer-text
    {
        font-size: 0.85rem;
    }
    footer .footer-copy
    {
        font-size: 0.75rem;
    }
    footer .footer-author
    {
        font-size: 0.75rem;
    }
    footer a.link
    {
        font-size: 0.95rem;
    }
    .footer-separator
    {
        height: 96px;
        margin: 0 64px;
    }
    .box-dimostration
    {
        height: 100px;
    }

    .info-dim-A
    {
        left: 10px;
        top: 10px;
        font-size: 1.1rem;
    }
    p.dim
    {
        max-width: 860px;
    }
}

/* ---- Docs layout ---- */
.docs-page
{
    background-color: var(--color-white);
}
.docs-page header
{
    background-color: var(--color-dark);
}
.docs-wrapper
{
    display: flex;
    padding-top: 65px;
    min-height: 100vh;
}
#docs-sidebar
{
    display: none;
}
#docs-sidebar nav ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}
#docs-sidebar nav ul li
{
    margin-bottom: 0;
}
#docs-sidebar nav ul li a
{
    display: block;
    padding: 8px 24px;
    font-size: 0.9rem;
    color: var(--color-white);
    transition: color 300ms ease, background-color 300ms ease;
}
#docs-sidebar nav ul li a:hover
{
    color: var(--color-pr);
    background-color: var(--color-dark);
}
#docs-sidebar nav ul li.active a
{
    color: var(--color-sec);
    font-weight: 700;
    background-color: var(--color-dark);
}
#docs-content
{
    flex: 1;
    padding: 32px 24px 64px;
    min-width: 0;
}
#docs-content h1
{
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--color-pr);
}
#docs-content h2
{
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 16px;
    -webkit-text-stroke: 0;
    color: var(--color-sec);
}
#docs-content p
{
    max-width: 640px;
}
#docs-content h3
{
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 8px;
}
#docs-content code
{
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85em;
    background-color: rgba(125,150,255,0.1);
    padding: 2px 6px;
    color: var(--color-dark);
}
#docs-content .code-block code
{
    background-color: transparent;
    padding: 0;
    color: var(--color-white);
}
.docs-list
{
    list-style: none;
    padding: 0;
    margin: 0;
}
.docs-list li
{
    padding: 6px 0;
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--color-text);
}
.docs-list li code
{
    font-weight: 700;
}
.docs-example
{
    border: 1px solid rgba(31,38,64,0.1);
    padding: 16px;
    background-color: var(--color-gray-light);
}
.docs-example-box
{
    background-color: var(--color-sec);
    color: var(--color-white);
    padding: 16px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
}
.docs-example-box.docs-example-box-alt
{
    background-color: var(--color-pr);
}
.docs-example-label
{
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-tex-light);
}
.docs-table-wrapper
{
    overflow-x: auto;
}
.docs-table
{
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.docs-table th
{
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-tex-light);
    padding: 8px 16px 8px 0;
    border-bottom: 2px solid rgba(31,38,64,0.1);
}
.docs-table td
{
    padding: 10px 16px 10px 0;
    border-bottom: 1px solid rgba(31,38,64,0.06);
    font-weight: 200;
    color: var(--color-text);
}
.docs-table td code
{
    font-weight: 700;
}
.docs-nav-row
{
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}
.docs-nav-box
{
    width: 200px;
    flex-shrink: 0;
    padding: 16px 24px;
    background-color: var(--color-dark);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background-color 0.3s ease;
}
.docs-nav-box:hover
{
    background-color: var(--color-pr);
}
.docs-nav-box:hover .docs-nav-label,
.docs-nav-box:hover a
{
    color: var(--color-white);
}
.docs-nav-box:first-child
{
    text-align: left;
}
.docs-nav-box:last-child
{
    text-align: right;
}
.docs-nav-box.disabled
{
    visibility: hidden;
}
.docs-nav-label
{
    font-size: 0.75rem;
    color: var(--color-tex-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.docs-nav-box a
{
    font-size: 1rem;
    font-weight: 400;
}

/* Docs — lg (768px) */
@media (min-width: 768px)
{
    .docs-wrapper
    {
        padding-top: 70px;
    }
    #docs-content
    {
        padding: 48px 40px 80px;
    }
    #docs-content h1
    {
        font-size: 2.4rem;
    }
    #docs-content h2
    {
        font-size: 1.8rem;
    }
    #docs-content h3
    {
        font-size: 1.3rem;
    }
}

/* Docs — sp (1024px) */
@media (min-width: 1024px)
{
    .docs-wrapper
    {
        padding-top: 75px;
    }
    #docs-sidebar
    {
        display: block;
        width: 260px;
        flex-shrink: 0;
        background: linear-gradient(160deg, rgba(150, 65, 200, 1) 2%, rgba(31, 38, 64, 1) 70%);
        padding-top: 40px;
        position: sticky;
        top: 75px;
        height: calc(100vh - 75px);
        overflow-y: auto;
    }
    #docs-content
    {
        padding: 48px 80px 96px;
    }
    #docs-content h1
    {
        font-size: 2.8rem;
    }
    #docs-content h2
    {
        font-size: 2rem;
    }
    #docs-content h3
    {
        font-size: 1.5rem;
    }
}

/* Docs — mg (1420px) */
@media (min-width: 1420px)
{
    .docs-wrapper
    {
        padding-top: 85px;
    }
    #docs-sidebar
    {
        width: 300px;
        padding-top: 48px;
        top: 85px;
        height: calc(100vh - 85px);
    }
    #docs-sidebar nav ul li a
    {
        padding: 10px 32px;
        font-size: 1rem;
    }
    #docs-content
    {
        padding: 56px 220px 112px;
    }
    #docs-content h1
    {
        font-size: 3rem;
    }
    #docs-content h2
    {
        font-size: 2.2rem;
    }
    #docs-content h3
    {
        font-size: 1.6rem;
    }
}

/* Docs — ut (1860px) */
@media (min-width: 1860px)
{
    .docs-wrapper
    {
        padding-top: 100px;
    }
    #docs-sidebar
    {
        width: 340px;
        padding-top: 56px;
        top: 100px;
        height: calc(100vh - 100px);
    }
    #docs-sidebar nav ul li a
    {
        padding: 12px 40px;
    }
    #docs-content
    {
        padding: 64px 300px 128px;
    }
    #docs-content h1
    {
        font-size: 3.4rem;
    }
    #docs-content h2
    {
        font-size: 2.6rem;
    }
    #docs-content h3
    {
        font-size: 1.8rem;
    }
}

/* ── Scaffold demo standalone page ── */
.sd-nav
{
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(31, 38, 64, 0.97);
    backdrop-filter: blur(8px);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
}
.sd-nav-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}
.sd-nav-logo
{
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.sd-nav-logo span
{
    color: var(--color-pr);
}
.sd-nav-links
{
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sd-nav-links li a
{
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.sd-nav-links li a:hover
{
    color: #fff;
}
.sd-nav-cta
{
    background: var(--color-pr);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
}
.sd-back-banner
{
    background: var(--color-pr);
    padding: 10px 32px;
    text-align: center;
    font-size: 0.8rem;
    color: #fff;
}
.sd-back-banner a
{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.sd-back-banner a:hover
{
    color: rgba(255,255,255,0.75);
}

/* Wireframe filter panel */
.wf-panel
{
    position: fixed;
    top: 110px;
    right: 16px;
    z-index: 9999;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 0;
    overflow: hidden;
    width: 148px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.wf-panel-header
{
    padding: 10px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    border-bottom: 1px solid #1e1e1e;
    background: #0a0a0a;
    user-select: none;
}
.wf-panel-btn
{
    display: block;
    width: 100%;
    padding: 9px 14px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.78rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.2px;
}
.wf-panel-btn:last-child
{
    border-bottom: none;
}
.wf-panel-btn:hover
{
    background: #1e1e1e;
    color: #999;
}
.wf-panel-btn.active
{
    background: #252525;
    color: #fff;
}
.wf-panel-btn .wf-panel-dot
{
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 8px;
    background: #2a2a2a;
    vertical-align: middle;
    position: relative;
    top: -1px;
    flex-shrink: 0;
}
.wf-panel-btn.active .wf-panel-dot
{
    background: #fff;
}
.wf-panel-btn:hover .wf-panel-dot
{
    background: #666;
}

/* ── Scaffold preview ── */
.scaffold-preview
{
    border: 2px solid rgba(170, 65, 200, 0.25);
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    font-family: 'Lexend', sans-serif;
}
.scaffold-section-label
{
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 0;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.scaffold-section-label.dark
{
    background: rgba(31,38,64,0.1);
    color: var(--color-text-medium);
}

/* Hero */
.scaffold-hero
{
    background: linear-gradient(135deg, #1f2640 0%, #6a1f8c 100%);
    padding: 64px 32px;
    text-align: center;
    color: #fff;
}
.scaffold-hero h2
{
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.scaffold-hero p
{
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.scaffold-btn
{
    display: inline-block;
    background: var(--color-pr);
    color: #fff;
    padding: 12px 32px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: default;
}
.scaffold-btn.outline
{
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

/* Features section */
.scaffold-features
{
    background: #f8f8f8;
    padding: 56px 32px;
}
.scaffold-features h3
{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px;
}
.scaffold-features .sc-section-title
{
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px;
}
.scaffold-features .sc-section-sub
{
    color: var(--color-text-medium);
    font-size: 0.95rem;
    margin: 0 0 40px;
}
.scaffold-card
{
    background: #fff;
    border-radius: 0;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(31,38,64,0.07);
    box-sizing: border-box;
}
.scaffold-card-icon
{
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--color-pr), var(--color-sec));
    margin-bottom: 16px;
}
.scaffold-card h4
{
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px;
}
.scaffold-card p
{
    font-size: 0.875rem;
    color: var(--color-text-medium);
    margin: 0;
    line-height: 1.6;
    max-width: none;
}

/* Content section */
.scaffold-content
{
    background: #fff;
    padding: 56px 32px;
}
.scaffold-content-text h3
{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 16px;
}
.scaffold-content-text p
{
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: none;
}
.scaffold-content-visual
{
    background: linear-gradient(135deg, rgba(170,65,200,0.1) 0%, rgba(125,150,255,0.15) 100%);
    border-radius: 0;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(170,65,200,0.15);
}
.scaffold-content-visual span
{
    font-size: 0.8rem;
    color: var(--color-pr);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.scaffold-tag
{
    display: inline-block;
    background: rgba(170,65,200,0.1);
    color: var(--color-pr);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 0;
    margin-bottom: 12px;
}

/* Mini cards section */
.scaffold-cards
{
    background: var(--color-dark);
    padding: 56px 32px;
}
.scaffold-cards .sc-section-title
{
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.scaffold-cards .sc-section-sub
{
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin: 0 0 40px;
}
.scaffold-mini-card
{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 24px 20px;
    box-sizing: border-box;
}
.scaffold-mini-card h4
{
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.scaffold-mini-card p
{
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.6;
    max-width: none;
}
.scaffold-mini-card-num
{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pr);
    margin-bottom: 8px;
}

/* Scaffold footer */
.scaffold-footer
{
    background: #12172e;
    padding: 40px 32px 24px;
    color: rgba(255,255,255,0.6);
}
.scaffold-footer h4
{
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.scaffold-footer ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}
.scaffold-footer ul li
{
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    line-height: 1.5;
}
.scaffold-footer-copy
{
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 32px;
    padding-top: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

/* ── Wireframe demo simulations ── */
.wf-demo
{
    border-radius: 0;
    overflow: hidden;
    width: 100%;
}

/* Outline mode demo */
.wf-demo-outline .wf-container
{
    outline: 2px solid #1f2640;
    padding: 16px;
    border-radius: 0;
    background: transparent;
}
.wf-demo-outline .wf-row
{
    outline: 2px solid #aa41c8;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    border-radius: 0;
}
.wf-demo-outline .wf-box
{
    outline: 2px solid #3f4b80;
    background: rgba(63, 75, 128, 0.08);
    border-radius: 0;
    padding: 24px 16px;
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-medium);
    font-family: monospace;
}

/* Fill mode demo */
.wf-demo-fill .wf-container
{
    background: #1f2640;
    padding: 16px;
    border-radius: 0;
}
.wf-demo-fill .wf-row
{
    background: #aa41c8;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    border-radius: 0;
}
.wf-demo-fill .wf-box
{
    background: #7d96ff;
    border-radius: 0;
    padding: 24px 16px;
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
    font-family: monospace;
}

/* Border mode demo */
.wf-demo-border .wf-container
{
    background: #1f2640;
    padding: 16px;
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.wf-demo-border .wf-row
{
    background: #aa41c8;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.wf-demo-border .wf-box
{
    background: #7d96ff;
    border-radius: 0;
    padding: 24px 16px;
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
    font-family: monospace;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Info mode demo */
.wf-demo-info .wf-container
{
    background: #1f2640;
    padding: 16px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.wf-demo-info .wf-row
{
    background: #aa41c8;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.wf-demo-info .wf-box
{
    background: #7d96ff;
    border-radius: 0;
    padding: 32px 16px 24px;
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}
.wf-demo-info .wf-box .wf-label
{
    position: absolute;
    top: 0;
    left: 0;
    background: #1f2640;
    color: #e9eeff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 0 0 4px 0;
    font-family: monospace;
    line-height: 1.4;
}

/* Page scaffold wireframe demo */
.wf-demo-page
{
    padding: 0;
    overflow: hidden;
    background: rgba(31, 38, 64, 0.15);
    border: 1px solid rgba(170, 65, 200, 0.25);
}
.wf-demo-page .wf-container
{
    padding: 6px;
}
.wf-demo-page .wf-row
{
    padding: 6px;
    gap: 8px;
}
.wf-demo-page .wf-box
{
    padding: 10px 8px;
    font-size: 0.75rem;
}
.wf-demo-page .wf-box-hero
{
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wf-demo-page .wf-box-tall
{
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wf-page-nav
{
    padding: 4px 6px;
    background: rgba(31, 38, 64, 0.7);
    border-bottom: 1px solid rgba(170, 65, 200, 0.5);
}
.wf-page-nav .wf-row
{
    padding: 4px;
    gap: 6px;
}
.wf-page-nav .wf-box
{
    padding: 6px 8px;
    font-size: 0.7rem;
}
.wf-page-hero
{
    padding: 8px;
    background: rgba(31, 38, 64, 0.4);
    border-bottom: 1px solid rgba(170, 65, 200, 0.2);
}
.wf-page-section
{
    padding: 8px;
    border-bottom: 1px solid rgba(170, 65, 200, 0.15);
}
.wf-page-alt
{
    background: rgba(255, 255, 255, 0.02);
}
.wf-page-footer
{
    padding: 8px;
    background: rgba(31, 38, 64, 0.55);
}

/* ══════════════════════════════════════════════════════════
   Contact page
   ══════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero
{
    background: linear-gradient(160deg, rgba(150,65,200,1) 2%, rgba(31,38,64,1) 70%);
    padding: 96px 24px 80px;
    text-align: center;
}
.contact-hero h1
{
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.contact-hero p
{
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin: 0;
}

/* Section */
.contact-section
{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-bg);
}

/* Info column */
.contact-info h2
{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.contact-info > p
{
    color: var(--color-text-medium);
    line-height: 1.75;
    margin: 0 0 40px;
    max-width: 380px;
}
.contact-links
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.contact-link
{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid rgba(31,38,64,0.12);
    color: var(--color-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-link:hover
{
    border-color: var(--color-pr);
    background-color: rgba(170,65,200,0.04);
    color: var(--color-pr);
}
.contact-link-icon
{
    display: flex;
    align-items: center;
    color: var(--color-pr);
    flex-shrink: 0;
}
.contact-meta
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-meta-item
{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-text-medium);
}
.contact-meta-item svg
{
    color: var(--color-pr);
    flex-shrink: 0;
}

/* Form box */
.contact-form-box
{
    background: var(--color-dark);
    padding: 48px;
}
.contact-form-box h3
{
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 32px;
    letter-spacing: -0.3px;
}
.form-group
{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label
{
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-pr);
    text-transform: none;
    letter-spacing: 0;
}
.form-group input,
.form-group textarea
{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    padding: 13px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder
{
    color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group textarea:focus
{
    border-color: var(--color-pr);
    background: rgba(255,255,255,0.08);
}
.form-group textarea
{
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1023px)
{
    .contact-form-box
    {
        padding: 32px 24px;
        margin-top: 48px;
    }
    .contact-info > p
    {
        max-width: none;
    }
}

@media (min-width: 1024px)
{
    .contact-form-box
    {
        padding: 72px 80px;
    }
}

/* ======================== Customize page ======================== */
.customize-section
{
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
}
.customize-header
{
    text-align: left;
    margin-bottom: 48px;
    padding-top: 40px;
}
.customize-header h2
{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 12px;
}
.customize-header p
{
    color: var(--color-text-medium);
    max-width: 540px;
    margin: 0;
    line-height: 1.6;
}
.customize-group
{
    background: var(--color-dark);
    padding: 32px;
    margin-bottom: 0;
}
.customize-group-title
{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-sec);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.customize-group-title svg
{
    color: var(--color-sec);
    flex-shrink: 0;
}
.customize-group .form-group select
{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    padding: 13px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.customize-group .form-group select:focus
{
    border-color: var(--color-pr);
    background-color: rgba(255,255,255,0.08);
}
.customize-group .form-group select option
{
    background: var(--color-dark);
    color: var(--color-white);
}
.form-hint
{
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    margin-top: -2px;
    line-height: 1.3;
}
.customize-actions
{
    padding: 32px 0 0;
}
.customize-actions .btn
{
    font-size: 0.9rem;
    font-weight: 600;
}
.customize-actions .btn#btn-download
{
    background-color: var(--color-pr);
    color: var(--color-white);
    outline: none;
}
.customize-actions .btn#btn-download:hover
{
    background-color: var(--color-sec);
    color: var(--color-dark);
}
.customize-actions .btn#btn-reset
{
    outline: 1px solid var(--color-pr);
    color: var(--color-pr);
}
.customize-actions .btn#btn-reset:hover
{
    background-color: var(--color-sec);
    color: var(--color-dark);
    outline-color: var(--color-sec);
}
.customize-error
{
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(220,50,50,0.1);
    border: 1px solid rgba(220,50,50,0.3);
}
.customize-error p
{
    color: #dc3232 !important;
    font-size: 0.85rem;
    margin: 0;
}
@keyframes spin
{
    to { transform: rotate(360deg); }
}
.spin
{
    animation: spin 0.8s linear infinite;
}
@media (min-width: 1024px)
{
    .customize-group
    {
        padding: 40px 48px;
    }
}
