.brand-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.catalyst-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.brand-divider {
    width: 2px;
    height: 32px;
    background: var(--border-color);
    opacity: 0.3;
}

.brand-name {
    font-size: 38px;
    margin: 0;
    padding-left: 10px;
    color: var(--text-color);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.5px;
    background: linear-gradient(120deg, var(--primary-color), #2196f3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

/* Responsive design */

@media (max-width: 1060px) {
    .logo-wrapper {
        gap: 12px;
    }

    .brand-name {
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .brand-container {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
    }

    .logo-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .catalyst-logo {
        width: 40px;
        height: 40px;
    }

    .brand-divider {
        display: none;
    }

    .brand-name {
        font-size: 32px;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .brand-container {
        padding: 12px 16px;
    }

    .catalyst-logo {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 28px;
    }
}