*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:"Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:#f7f1eb;
    color:#1d1613;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.demo-badge{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(20,16,14,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.demo-badge__inner{
    width:min(1180px, calc(100% - 32px));
    margin:0 auto;
    min-height:56px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.demo-badge__label{
    color:#f5eee8;
    font-size:14px;
    font-weight:700;
    letter-spacing:.02em;
}

.demo-badge__actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.demo-badge__link{
    color:rgba(245,238,232,.8);
    font-size:14px;
}

.demo-badge__cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    background:#d1a46e;
    color:#1a120f;
    font-size:14px;
    font-weight:800;
}

@media (max-width: 720px){
    .demo-badge__inner{
        padding:10px 0;
        align-items:flex-start;
        flex-direction:column;
    }
}
