.demo-experience-bar {
    position: relative;
    z-index: 1050;
    color: #fff;
    background: #0b252c;
}

.demo-experience-bar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.demo-experience-bar__label,
.demo-experience-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-experience-bar__label i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #24d0ca;
    box-shadow: 0 0 0 5px rgba(36, 208, 202, .14);
}

.demo-experience-bar__label strong {
    font-size: .84rem;
}

.demo-experience-bar__label small {
    color: #b9cbce;
    font-size: .76rem;
}

.demo-experience-bar__actions form {
    margin: 0;
}

.demo-experience-bar__actions button,
.demo-experience-bar__actions a {
    padding: .42rem .75rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: .73rem;
    font-weight: 800;
    text-decoration: none;
}

.demo-experience-bar__actions a {
    background: rgba(255, 255, 255, .06);
}

.demo-experience-bar__actions button[data-demo-tour-open] {
    min-height: 38px;
    padding-inline: 1.15rem;
    border-color: #24d0ca;
    color: #071d23;
    background: #24d0ca;
    box-shadow: 0 8px 22px rgba(36, 208, 202, .24);
    font-size: .78rem;
    transition: transform .18s ease, box-shadow .18s ease;
}

.demo-experience-bar__actions button[data-demo-tour-open]:hover,
.demo-experience-bar__actions button[data-demo-tour-open]:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 11px 28px rgba(36, 208, 202, .36);
}

.demo-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;
    width: min(390px, calc(100% - 32px));
    display: grid;
    gap: 3px;
    padding: 17px 20px;
    border: 1px solid rgba(36, 208, 202, .35);
    border-radius: 16px;
    color: #fff;
    background: #0b252c;
    box-shadow: 0 20px 55px rgba(5, 24, 30, .25);
    animation: demo-notice-in .25s ease both;
}

.demo-notice[hidden],
.demo-tour[hidden],
.demo-tour__steps article[hidden] {
    display: none;
}

.demo-notice strong { font-size: .9rem; }
.demo-notice span { color: #c6d5d7; font-size: .78rem; }

@keyframes demo-notice-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-tour {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.demo-tour__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(4, 18, 23, .66);
    backdrop-filter: blur(7px);
}

.demo-tour__dialog {
    position: relative;
    width: min(590px, 100%);
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .3);
}

.demo-tour__dialog > header,
.demo-tour__dialog > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
}

.demo-tour__dialog > header span {
    color: #0a9f9c;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.demo-tour__dialog > header button {
    border: 0;
    color: #647478;
    background: none;
    font-size: 1.8rem;
}

.demo-tour__progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 0 28px;
}

.demo-tour__progress i {
    height: 4px;
    border-radius: 999px;
    background: #e2e9ea;
}

.demo-tour__progress i.is-active { background: #11bebb; }

.demo-tour__steps article {
    min-height: 285px;
    padding: 44px 48px 38px;
    background: linear-gradient(135deg, #fff 60%, #e7fbfa);
}

.demo-tour__steps article > span {
    color: #0a9f9c;
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.demo-tour__steps h2 {
    margin: 12px 0;
    color: #10282f;
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.05;
}

.demo-tour__steps p {
    max-width: 470px;
    color: #66777b;
    font-size: 1rem;
    line-height: 1.65;
}

.demo-tour__steps a {
    display: inline-flex;
    margin-top: 12px;
    color: #10282f;
    font-weight: 900;
    text-decoration: none;
}

.demo-tour__dialog > footer {
    border-top: 1px solid #e3e9ea;
}

.demo-tour__dialog > footer button {
    padding: .65rem 1rem;
    border: 1px solid #d9e1e2;
    border-radius: 999px;
    color: #10282f;
    background: #fff;
    font-weight: 850;
}

.demo-tour__dialog > footer button:last-child {
    border-color: #10282f;
    color: #fff;
    background: #10282f;
}

.demo-tour__dialog > footer small { color: #7b898c; }

@media (max-width: 767px) {
    .demo-experience-bar__inner {
        min-height: 55px;
    }

    .demo-experience-bar__label small,
    .demo-experience-bar__actions form,
    .demo-experience-bar__actions a {
        display: none;
    }

    .demo-experience-bar__actions button {
        white-space: nowrap;
    }

    .demo-tour { padding: 12px; }
    .demo-tour__steps article { padding: 34px 26px 28px; }
    .demo-tour__dialog > header,
    .demo-tour__dialog > footer { padding-inline: 20px; }
}
