/* Shared base styles — CSS nesting groups related rules */
.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font: 800 22px Manrope, sans-serif;
    letter-spacing: -1px;

    &-mark {
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 11px;
        color: #fff;
        background: linear-gradient(145deg, #7962ef, #4f34cf);
        font-size: 18px;
        box-shadow: 0 6px 16px rgba(108, 80, 232, .25)
    }

    &-symbol {
        font-size: 17px;
        line-height: 1
    }

    &-logo {
        display: block;
        width: clamp(240px, 22vw, 300px);
        height: auto;
        max-width: none
    }
}

.auth-page .brand-logo {
    width: clamp(300px, 30vw, 400px)
}

.sidebar-brand .brand-logo {
    width: 220px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    border-radius: 13px;
    padding: 14px 21px;
    background: var(--purple);
    color: #fff;
    font-weight: 700;
    /* box-shadow: 0 8px 20px rgba(108, 80, 232, .22); */
    cursor: pointer;

    &:hover {
        background: var(--purple-dark);
        color: #fff;
        transform: translateY(-1px)
    }

    &-small {
        padding: 10px 16px;
        border-radius: 11px;
        font-size: 14px
    }
}

.eyebrow {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px
}

.site-header {
    height: 76px;
    padding: 0 clamp(24px, 5vw, 76px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff
}

.desktop-nav {
    display: flex;
    gap: 34px;
    color: #525264;
    font-size: 14px;
    font-weight: 600;

    a:hover {
        color: var(--purple)
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px
}

.text-link {
    font-weight: 600;
    font-size: 14px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 24px
}

button:disabled,
button[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed
}